diff options
| author | schererleander <leander@schererleander.de> | 2025-11-03 00:19:09 +0100 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-11-03 00:19:09 +0100 |
| commit | 03f03eee9f8417b540f0d1b0d1e8a4626d455ac3 (patch) | |
| tree | bf7b8a76461e8a469b37197d9b6a78cb16dd2fb8 /hosts/lilith/configuration.nix | |
| parent | 9e2849e72a9a46515a9141226a0145fdbb5090c8 (diff) | |
chore: reorganize modules into subcategories
Diffstat (limited to 'hosts/lilith/configuration.nix')
| -rw-r--r-- | hosts/lilith/configuration.nix | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/hosts/lilith/configuration.nix b/hosts/lilith/configuration.nix index 897fc1d..390a8a3 100644 --- a/hosts/lilith/configuration.nix +++ b/hosts/lilith/configuration.nix @@ -1,10 +1,43 @@ -{ host, username, ... }: +{ + pkgs, + host, + username, + ... +}: { + imports = [ + ../../modules + ]; + users.users.${username}.home = "/Users/${username}"; networking.hostName = host; + home-manager.users.${username} = { + home.username = username; + home.homeDirectory = "/Users/${username}"; + + programs.home-manager.enable = true; + + home.packages = with pkgs; [ + htop + ffmpeg + wget + imagemagick + + gcc + maven + cmake + gnupg + lua + + zathura + + nerd-fonts.symbols-only + ]; + }; + system.primaryUser = username; system.defaults = { dock = { @@ -49,5 +82,7 @@ onActivation.upgrade = true; }; + nx. + system.stateVersion = 5; } |
