diff --git a/nixos.nix b/nixos.nix index af0cc98..9d60174 100644 --- a/nixos.nix +++ b/nixos.nix @@ -37,7 +37,7 @@ environment.systemPackages = with pkgs; [ - ] ++ lib.optional (config.ugaif.sw.type == "desktop") ghostty; + ] ++ lib.optional (config.athenix.sw.type == "desktop") ghostty; # Example: Add user to additional groups # users.users.myusername.extraGroups = [ "docker" ]; diff --git a/user.nix b/user.nix index 7de5eb7..3423bdf 100644 --- a/user.nix +++ b/user.nix @@ -4,7 +4,7 @@ # User Configuration for hdh20267 # ============================================================================ # This file configures BOTH: -# 1. User account options (ugaif.users.hdh20267) +# 1. User account options (athenix.users.hdh20267) # 2. Home-manager configuration (home.*, programs.*, services.*) { @@ -17,7 +17,7 @@ { # ========== User Account Configuration ========== - ugaif.users.hdh20267 = { + athenix.users.hdh20267 = { description = "Hunter Halloran"; shell = pkgs.zsh; hashedPassword = "!"; @@ -38,7 +38,7 @@ ripgrep fd bat - ] ++ lib.optional (osConfig.ugaif.sw.type or null == "desktop") ghostty; + ] ++ lib.optional (osConfig.athenix.sw.type or null == "desktop") ghostty; # ========== Programs ==========