From bdd10d43f1c292d471401f2c5a84512c80882171 Mon Sep 17 00:00:00 2001 From: helmi Date: Mon, 15 Dec 2025 23:12:17 +0100 Subject: [PATCH] Added most important option --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 01d4c7d..ad4cdfa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -14,6 +14,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # Add this or the shit will not boot + boot.supportedFilesystems = [ "nfs" ]; + networking.hostName = "potemkin"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. @@ -87,7 +90,7 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.petra = { - isNormalUser = true; + isNormalUser = false; description = "Petra Besser"; extraGroups = [ "networkmanager" "wheel" ]; home = "/home-local/petra";