dwm/shell.nix

9 lines
129 B
Nix
Raw Normal View History

2020-05-31 12:45:31 +00:00
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; with xorg; [
libX11 libXinerama libXft
];
}