commit 8ac3cec5f25557000737e67a14c154ced011caf8
parent 82e381fb48aa4c7242ab92b235a26f24b5f7d5be
Author: Vincent Demeester <vincent@sbr.pm>
Date: Tue, 23 Feb 2021 11:29:10 +0100
systems: fix home profile
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/systems/modules/profiles/home.nix b/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" ];