home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 85323a3ea90f382642876343afea881ee254098c
parent 6eefe10e307fd74ec1762f6142a416a6143541cf
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue,  1 Oct 2024 16:50:31 +0200

home module: fix aion nfs mount point

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/modules/profiles/home.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systems/modules/profiles/home.nix b/systems/modules/profiles/home.nix @@ -54,7 +54,7 @@ in }; # FIXME(vdemeester): I think it acts like this because there is only one export "/net/aion.home/export" = { - device = "${machines.home.ips.aion}:/"; + device = "${machines.home.ips.aion}:/export"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" ]; };