Commit 8ac3cec5f255

Vincent Demeester <vincent@sbr.pm>
2021-02-23 11:29:10
systems: fix home profile
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 82e381f
Changed files (1)
systems
modules
profiles
systems/modules/profiles/home.nix
@@ -36,13 +36,13 @@ in
     time.timeZone = "Europe/Paris";
     # To mimic autofs on fedora
     fileSystems = mkIf secretCondition {
-      "/net/synodine.home/" = {
+      "/net/synodine.home" = {
         device = "${machines.home.ips.synodine}:/";
         fsType = "nfs";
         options = [ "x-systemd.automount" "noauto" ];
       };
       # FIXME(vdemeester): I think it acts like this because there is only one export
-      "/net/sakhalin.home/export/" = {
+      "/net/sakhalin.home/export" = {
         device = "${machines.home.ips.sakhalin}:/";
         fsType = "nfs";
         options = [ "x-systemd.automount" "noauto" ];