diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-07 09:42:49 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-11 08:37:52 +0100 |
commit | a9971c9e6b6d340f7a6b0f6919a09c9d8a612bbf (patch) | |
tree | 1ef42d4f2e2689715bde8b145d3da80aa087e908 | |
parent | c8699539b9cb4947f5e516bddd820e757ee46b00 (diff) |
add creative tools
-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 + ]; +} + |