diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-09-04 19:05:37 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-09-04 19:05:37 +0200 |
commit | a47c7511ea28e23f08ec96c4e999695189a74dd3 (patch) | |
tree | b2cf10cc0c00e2edce10eec3d3ee525a82a06212 | |
parent | 7ca03e66f0a21770488cdb4f6a0d94b7355781ce (diff) | |
download | nixos-a47c7511ea28e23f08ec96c4e999695189a74dd3.tar nixos-a47c7511ea28e23f08ec96c4e999695189a74dd3.tar.gz nixos-a47c7511ea28e23f08ec96c4e999695189a74dd3.tar.bz2 nixos-a47c7511ea28e23f08ec96c4e999695189a74dd3.tar.xz nixos-a47c7511ea28e23f08ec96c4e999695189a74dd3.zip |
first attempt at automounting /var/media on vali
-rw-r--r-- | vali.nix | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -161,4 +161,23 @@ rec { | |||
161 | HibernateMode=shutdown platform | 161 | HibernateMode=shutdown platform |
162 | ''; | 162 | ''; |
163 | }; | 163 | }; |
164 | |||
165 | systemd.automounts= [ | ||
166 | { enable = true; | ||
167 | automountConfig = { | ||
168 | Where = "/var/media"; | ||
169 | DirectoryMode = "555"; | ||
170 | }; | ||
171 | } | ||
172 | ]; | ||
173 | |||
174 | systemd.mounts = [ | ||
175 | { enable = true; | ||
176 | What = "gkleen@hel.asgard.yggdrasil:/var/media"; | ||
177 | Where = "/var/media"; | ||
178 | Type = "fuse.sshfs"; | ||
179 | Options = "users,idmap=gkleen,IdentityFile=/home/user/.ssh/id_ed25519,allow_other,reconnect,_netdev"; | ||
180 | DirectoryMode = "555"; | ||
181 | } | ||
182 | ]; | ||
164 | } | 183 | } |