mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49: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
25
shell.nix
25
shell.nix
|
|
@ -7,29 +7,26 @@
|
||||||
./nix/packages/overlay.nix
|
./nix/packages/overlay.nix
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
}:
|
}: rec {
|
||||||
pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
name = "dotfiles";
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
#
|
|
||||||
# Just scripts
|
|
||||||
#
|
|
||||||
just
|
just
|
||||||
jq
|
jq
|
||||||
|
npins
|
||||||
|
disko
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
withXMonad = pkgs.mkShell {
|
||||||
|
inputsFrom = with pkgs; [
|
||||||
|
default
|
||||||
|
|
||||||
#
|
|
||||||
# XMonad
|
|
||||||
#
|
|
||||||
(haskellPackages.ghcWithPackages (self: [
|
(haskellPackages.ghcWithPackages (self: [
|
||||||
self.xmonad-contrib
|
self.xmonad-contrib
|
||||||
self.xmonad-extras
|
self.xmonad-extras
|
||||||
]))
|
]))
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
cabal-install
|
cabal-install
|
||||||
|
|
||||||
#
|
|
||||||
# Installer testing
|
|
||||||
#
|
|
||||||
disko
|
|
||||||
];
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue