This commit is contained in:
Cadey Ratio 2020-05-31 08:45:31 -04:00
parent 6baa155d67
commit a5baf1a2b8
3 changed files with 12 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
eval "$(lorri direnv)"

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.o
config.h
dwm

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; with xorg; [
libX11 libXinerama libXft
];
}