diff options
author | tcmal <me@aria.rip> | 2024-06-03 17:06:15 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-06-03 17:06:15 +0100 |
commit | dc8094726026c5b56b5600f95da8475561b1073d (patch) | |
tree | b850c5076151feb6d3610a4b66087423cd3882e6 /shell.nix |
initial commit: basic xorg initialisation
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 4 |
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 ]; } |