Files
nixos/modules/home-manager/shell.nix
2024-12-05 17:57:06 +01:00

23 lines
324 B
Nix

{
pkgs,
lib,
config,
...
}: {
options = {
myHome.shell.enable = lib.mkEnableOption "enables shell stuff";
};
config = lib.mkIf config.myHome.shell.enable {
home.packages = with pkgs; [
aoc-cli
just
neofetch
typst
];
programs.fish = {
enable = true;
};
};
}