diff options
-rw-r--r-- | bragi.nix | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -75,9 +75,20 @@ in rec { | |||
75 | }; | 75 | }; |
76 | 76 | ||
77 | systemd.automounts = [ | 77 | systemd.automounts = [ |
78 | { wantedBy = [ "multi-user.target" ]; where = "/media/odin"; } | 78 | { |
79 | { wantedBy = [ "multi-user.target" ]; where = "/media/dellingr"; } | 79 | wantedBy = [ "multi-user.target" ]; |
80 | { wantedBy = [ "multi-user.target" ]; where = "/media/vali"; } | 80 | where = "/media/odin"; |
81 | } | ||
82 | { | ||
83 | wantedBy = [ "multi-user.target" ]; | ||
84 | where = "/media/dellingr"; | ||
85 | automountConfig.TimoutIdleSec = "30s"; | ||
86 | } | ||
87 | { | ||
88 | wantedBy = [ "multi-user.target" ]; | ||
89 | where = "/media/vali"; | ||
90 | automountConfig.TimoutIdleSec = "5min"; | ||
91 | } | ||
81 | ]; | 92 | ]; |
82 | 93 | ||
83 | systemd.mounts = [ | 94 | systemd.mounts = [ |