summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorBossCode45 <human.cyborg42@gmail.com>2024-05-30 12:19:27 +1200
committerBossCode45 <human.cyborg42@gmail.com>2024-05-30 12:19:27 +1200
commite162dff48c251e262f475de9261f0ecfa0f39dc4 (patch)
tree32492f6c22e1b85c811f8a52942857c1f2773a1d /shell.nix
parent2c9d13e954c2ee66ff4d43949bedc73e60637a34 (diff)
downloadYATwm-e162dff48c251e262f475de9261f0ecfa0f39dc4.tar.gz
YATwm-e162dff48c251e262f475de9261f0ecfa0f39dc4.zip
feat: Updated readme and added nix support
Added a flake.nix and shell.nix and .envrc so nix+direnv will work well
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..46c8894
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,13 @@
+{ pkgs ? import <nixpkgs> {} }:
+with pkgs;
+mkShell {
+ buildInputs = [
+ gcc
+ gnumake
+ xorg.libX11
+ xorg.libXrandr
+ libnotify
+ pkg-config
+ clang-tools
+ ];
+}