xmonad shell cause i dont know haskell
This commit is contained in:
parent
03c4016a60
commit
78c593be91
1 changed files with 10 additions and 0 deletions
10
shell.nix
10
shell.nix
|
@ -7,4 +7,14 @@
|
||||||
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
|
||||||
|
haskellPackages.xmonad-contrib
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue