diff options
-rw-r--r-- | nixos/hamac-configuration.nix | 1 | ||||
-rw-r--r-- | nixos/parts/create.nix | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/nixos/hamac-configuration.nix b/nixos/hamac-configuration.nix index 4c50cc1..4ca935f 100644 --- a/nixos/hamac-configuration.nix +++ b/nixos/hamac-configuration.nix @@ -11,6 +11,7 @@ ./parts/graphical.nix ./parts/tailscale.nix ./parts/dev.nix + ./parts/create.nix ]; # Bootloader. diff --git a/nixos/parts/create.nix b/nixos/parts/create.nix new file mode 100644 index 0000000..1f430f4 --- /dev/null +++ b/nixos/parts/create.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + graphviz-nox # for dot + + krita + ]; +} + |