stylix: add ghc developer shell
Link: https://github.com/danth/stylix/pull/519
This commit is contained in:
parent
708b2147c0
commit
807c81894e
1 changed files with 13 additions and 6 deletions
19
flake.nix
19
flake.nix
|
|
@ -111,13 +111,20 @@
|
|||
};
|
||||
} self.packages.${system};
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
inherit (self.checks.${system}.git-hooks) shellHook;
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
inherit (self.checks.${system}.git-hooks) shellHook;
|
||||
|
||||
packages = [
|
||||
inputs.home-manager.packages.${system}.default
|
||||
self.checks.${system}.git-hooks.enabledPackages
|
||||
];
|
||||
packages = [
|
||||
inputs.home-manager.packages.${system}.default
|
||||
self.checks.${system}.git-hooks.enabledPackages
|
||||
];
|
||||
};
|
||||
|
||||
ghc = pkgs.mkShell {
|
||||
inputsFrom = [ self.devShells.${system}.default ];
|
||||
packages = [ pkgs.ghc ];
|
||||
};
|
||||
};
|
||||
|
||||
packages = let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue