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 /nixos/parts | |
parent | c8699539b9cb4947f5e516bddd820e757ee46b00 (diff) |
add creative tools
Diffstat (limited to 'nixos/parts')
-rw-r--r-- | nixos/parts/create.nix | 10 |
1 files changed, 10 insertions, 0 deletions
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 + ]; +} + |