diff options
| author | schererleander <leander@schererleander.de> | 2025-11-03 09:44:08 +0100 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-11-03 09:45:05 +0100 |
| commit | e804f23853c3505909c6ae64b5fd0d0f661e061d (patch) | |
| tree | c7a5b64620f795365f93fe3e5ffce3c686b29388 | |
| parent | abc150bc93263819305ef9cf6fc5a80f5ea83faf (diff) | |
change home-manager packages import mac-app-util
| -rw-r--r-- | hosts/lilith/configuration.nix | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/hosts/lilith/configuration.nix b/hosts/lilith/configuration.nix index 390a8a3..65127d7 100644 --- a/hosts/lilith/configuration.nix +++ b/hosts/lilith/configuration.nix @@ -1,6 +1,7 @@ { pkgs, host, + inputs, username, ... }: @@ -15,6 +16,10 @@ networking.hostName = host; home-manager.users.${username} = { + imports = [ + inputs.mac-app-util.homeManagerModules.default + ]; + home.username = username; home.homeDirectory = "/Users/${username}"; @@ -26,16 +31,13 @@ wget imagemagick - gcc - maven - cmake - gnupg - lua - zathura + zoxide + gemini-cli nerd-fonts.symbols-only ]; + home.stateVersion = "25.05"; }; system.primaryUser = username; @@ -82,7 +84,17 @@ onActivation.upgrade = true; }; - nx. + nx = { + programs = { + neovim.enable = true; + zsh.enable = true; + anki.enable = true; + spicetify.enable = true; + vscode.enable = true; + }; + }; + + system.stateVersion = 5; } |
