summaryrefslogtreecommitdiff
path: root/vali.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-09-04 20:38:28 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-09-04 20:38:28 +0200
commita613b78f92b9c68644cc188075d12c31e10558ee (patch)
treeb7f3eb722fb5920206348ca3d47b94e233b18b45 /vali.nix
parentbcee730ee46a1253b745df323554a5a213671d11 (diff)
downloadnixos-a613b78f92b9c68644cc188075d12c31e10558ee.tar
nixos-a613b78f92b9c68644cc188075d12c31e10558ee.tar.gz
nixos-a613b78f92b9c68644cc188075d12c31e10558ee.tar.bz2
nixos-a613b78f92b9c68644cc188075d12c31e10558ee.tar.xz
nixos-a613b78f92b9c68644cc188075d12c31e10558ee.zip
give up automount for now
Diffstat (limited to 'vali.nix')
-rw-r--r--vali.nix40
1 files changed, 20 insertions, 20 deletions
diff --git a/vali.nix b/vali.nix
index d96ec7db..958faf2f 100644
--- a/vali.nix
+++ b/vali.nix
@@ -162,24 +162,24 @@ rec {
162 ''; 162 '';
163 }; 163 };
164 164
165 systemd.automounts = [ 165 # systemd.automounts = [
166 { enable = true; 166 # { enable = true;
167 where = "/var/media"; 167 # where = "/var/media";
168 automountConfig = { 168 # automountConfig = {
169 DirectoryMode = "555"; 169 # DirectoryMode = "555";
170 }; 170 # };
171 } 171 # }
172 ]; 172 # ];
173 173
174 systemd.mounts = [ 174 # systemd.mounts = [
175 { enable = true; 175 # { enable = true;
176 where = "/var/media"; 176 # where = "/var/media";
177 what = "gkleen@hel.asgard.yggdrasil:/var/media"; 177 # what = "gkleen@hel.asgard.yggdrasil:/var/media";
178 type = "fuse.sshfs"; 178 # type = "fuse.sshfs";
179 options = "users,idmap=gkleen,IdentityFile=/home/user/.ssh/id_ed25519,allow_other,reconnect,_netdev"; 179 # options = "users,idmap=gkleen,IdentityFile=/home/user/.ssh/id_ed25519,allow_other,reconnect,_netdev";
180 mountConfig = { 180 # mountConfig = {
181 DirectoryMode = "555"; 181 # DirectoryMode = "555";
182 }; 182 # };
183 } 183 # }
184 ]; 184 # ];
185} 185}