diff --git a/hosts/zinc/configuration.nix b/hosts/zinc/configuration.nix index 84e354f..d4c222b 100644 --- a/hosts/zinc/configuration.nix +++ b/hosts/zinc/configuration.nix @@ -8,6 +8,7 @@ ../../configuration/desktop ./initrd.nix + ./programs.nix ]; # Use the systemd-boot EFI boot loader. diff --git a/hosts/zinc/programs.nix b/hosts/zinc/programs.nix new file mode 100644 index 0000000..136636a --- /dev/null +++ b/hosts/zinc/programs.nix @@ -0,0 +1,11 @@ +{ ... }: + +{ + + users.users.clerie.packages = with pkgs; [ + firefox + + blender + ]; + +}