nix shell for xmonad

This commit is contained in:
Sakooooo 2023-08-02 02:16:08 +03:00
parent 1a58f40456
commit 351fbc4a76
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -7,4 +7,13 @@
NIX_CONFIG = "experimental-features = nix-command flakes"; NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [ nix home-manager git ]; nativeBuildInputs = with pkgs; [ nix home-manager git ];
}; };
xmonad = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
haskell-language-server
ghc
];
buildInputs = with pkgs; [
haskellPackages.xmonad
];
};
} }