mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
shell: chunk up usecases
This commit is contained in:
parent
d8949e6b27
commit
28b987bf6d
1 changed files with 20 additions and 23 deletions
43
shell.nix
43
shell.nix
|
|
@ -7,29 +7,26 @@
|
|||
./nix/packages/overlay.nix
|
||||
];
|
||||
},
|
||||
}:
|
||||
pkgs.mkShell {
|
||||
name = "dotfiles";
|
||||
packages = with pkgs; [
|
||||
#
|
||||
# Just scripts
|
||||
#
|
||||
just
|
||||
jq
|
||||
}: rec {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
just
|
||||
jq
|
||||
npins
|
||||
disko
|
||||
];
|
||||
};
|
||||
|
||||
#
|
||||
# XMonad
|
||||
#
|
||||
(haskellPackages.ghcWithPackages (self: [
|
||||
self.xmonad-contrib
|
||||
self.xmonad-extras
|
||||
]))
|
||||
haskell-language-server
|
||||
cabal-install
|
||||
withXMonad = pkgs.mkShell {
|
||||
inputsFrom = with pkgs; [
|
||||
default
|
||||
|
||||
#
|
||||
# Installer testing
|
||||
#
|
||||
disko
|
||||
];
|
||||
(haskellPackages.ghcWithPackages (self: [
|
||||
self.xmonad-contrib
|
||||
self.xmonad-extras
|
||||
]))
|
||||
haskell-language-server
|
||||
cabal-install
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue