From 4c6dde8f48dc75a32e6e55e62f2e41d57e5b3fbc Mon Sep 17 00:00:00 2001 From: helmi Date: Mon, 15 Dec 2025 22:43:09 +0100 Subject: [PATCH] add /home mnt --- configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configuration.nix b/configuration.nix index 87d8bc6..33362a1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -78,6 +78,13 @@ # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; + fileSystems."/home"= { + + device = "files:/mnt/default/homes"; + fsType = "nfs"; + + } + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.petra = { isNormalUser = true;