summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lass@lassul.us>2017-01-21 18:41:43 +0100
committerlassulus <lass@lassul.us>2017-01-21 18:41:43 +0100
commitc7f0bc280077a4a324700009f6dfbdc6a59cc29a (patch)
tree504b7ae67d696adec66ce8a3eb1566832d0af691
parenta08ac6fc1770f1043446a81b2a6ce574dbd35899 (diff)
parent531807ece890f1d857304a86837ae4bc1f27076e (diff)
Merge remote-tracking branch 'prism/newest'
-rw-r--r--nin/1systems/onondaga.nix4
-rw-r--r--nin/2configs/weechat.nix21
2 files changed, 23 insertions, 2 deletions
diff --git a/nin/1systems/onondaga.nix b/nin/1systems/onondaga.nix
index f7518aa6..59f26c46 100644
--- a/nin/1systems/onondaga.nix
+++ b/nin/1systems/onondaga.nix
@@ -9,9 +9,10 @@
../.
<nixpkgs/nixos/modules/profiles/qemu-guest.nix>
../2configs/retiolum.nix
+ ../2configs/weechat.nix
];
- krebs.build.host = config.krebs.hosts.hiawatha;
+ krebs.build.host = config.krebs.hosts.onondaga;
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
@@ -21,7 +22,6 @@
# Define on which hard drive you want to install Grub.
boot.loader.grub.device = "/dev/sda";
- networking.hostName = "onondaga";
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Select internationalisation properties.
diff --git a/nin/2configs/weechat.nix b/nin/2configs/weechat.nix
new file mode 100644
index 00000000..6c0fb313
--- /dev/null
+++ b/nin/2configs/weechat.nix
@@ -0,0 +1,21 @@
+{ config, lib, pkgs, ... }:
+
+let
+ inherit (import <stockholm/lib>) genid;
+in {
+ krebs.per-user.chat.packages = with pkgs; [
+ mosh
+ weechat
+ tmux
+ ];
+
+ users.extraUsers.chat = {
+ home = "/home/chat";
+ uid = genid "chat";
+ useDefaultShell = true;
+ createHome = true;
+ openssh.authorizedKeys.keys = [
+ config.krebs.users.nin.pubkey
+ ];
+ };
+}