summaryrefslogtreecommitdiff
path: root/nixos/parts
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2024-12-07 09:42:49 +0100
committerMartin Fischer <martin@push-f.com>2024-12-11 08:37:52 +0100
commita9971c9e6b6d340f7a6b0f6919a09c9d8a612bbf (patch)
tree1ef42d4f2e2689715bde8b145d3da80aa087e908 /nixos/parts
parentc8699539b9cb4947f5e516bddd820e757ee46b00 (diff)
add creative tools
Diffstat (limited to 'nixos/parts')
-rw-r--r--nixos/parts/create.nix10
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
+ ];
+}
+