Files
nix-config-v2/home/packages/workstation.nix

40 lines
602 B
Nix
Raw Permalink Normal View History

2025-10-30 17:34:55 -04:00
{
2025-10-31 17:07:59 -04:00
lib,
2025-10-30 17:34:55 -04:00
pkgs,
2025-10-31 17:07:59 -04:00
dirs,
userName,
userEmail,
ghostty,
isNixOS,
2025-10-30 17:34:55 -04:00
...
}: {
2025-10-31 17:07:59 -04:00
imports = map (module: import module { inherit lib pkgs dirs userName userEmail ghostty isNixOS; }) [
../terminal.nix
../broswer.nix
../zellij.nix
../lazygit.nix
../k9s.nix
../krew.nix
../direnv.nix
] ++ lib.optional isNixOS [
../sway.nix
];
2025-10-30 17:34:55 -04:00
home.packages = with pkgs; [
fh
2025-10-31 17:07:59 -04:00
kubectl # kube config is deliberately not included
kubectx
2025-10-30 17:34:55 -04:00
obsidian
vscode
yt-dlp
weechat
nodejs
cargo
python3
nixd
deadnix
alejandra
statix
];
}