summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-06-03 17:06:15 +0100
committertcmal <me@aria.rip>2024-06-03 17:06:15 +0100
commitdc8094726026c5b56b5600f95da8475561b1073d (patch)
treeb850c5076151feb6d3610a4b66087423cd3882e6 /shell.nix
initial commit: basic xorg initialisation
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..3413d9c
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,4 @@
+{
+ pkgs ? import <nixpkgs> { },
+}:
+pkgs.mkShell { buildInputs = with pkgs; [ xorg.libxcb ]; }