summaryrefslogtreecommitdiff
path: root/ymir.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ymir.nix')
-rw-r--r--ymir.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/ymir.nix b/ymir.nix
index 0ff8ddb4..7cc5ec25 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -19,6 +19,7 @@ in {
19 ./ymir-hw.nix 19 ./ymir-hw.nix
20 ./custom/zsh.nix 20 ./custom/zsh.nix
21 ./users.nix 21 ./users.nix
22 ./custom/tinc.nix
22 ]; 23 ];
23 24
24 boot.loader.grub = { 25 boot.loader.grub = {
@@ -143,8 +144,11 @@ in {
143 chown root:shadow /etc/shadow 144 chown root:shadow /etc/shadow
144 chmod 0640 /etc/shadow 145 chmod 0640 /etc/shadow
145 ''; 146 '';
146 users.groups."xmpp" = { 147
147 members = [ "gkleen" 148 services.tinc.networks = (pkgs.callPackage ./custom/yggdrasil.nix {
148 ]; 149 connect = false;
149 }; 150 ipConf = {
151 ip4 = [ { address = "10.141.4.1"; prefixLength = 16; } ];
152 };
153 });
150} 154}