From c42feb3c4274b206f3f4d74f6cf6b0d5b64b805f Mon Sep 17 00:00:00 2001 From: Cookiez Date: Fri, 21 Nov 2025 16:44:17 +0100 Subject: [PATCH] Fixed wrong username variable insersion in configuration.nix --- modules/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/configuration.nix b/modules/configuration.nix index c71444f..153804c 100644 --- a/modules/configuration.nix +++ b/modules/configuration.nix @@ -228,7 +228,7 @@ # services.xserver.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. - users.users."{$username}" = { + users.users.${username} = { isNormalUser = true; description = "Cookiez"; extraGroups = [ "networkmanager" "wheel" "docker" ];