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

38 lines
502 B
Nix
Raw 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-11-06 17:14:39 -05:00
imports = [
2025-10-31 17:07:59 -04:00
../terminal.nix
../broswer.nix
../zellij.nix
../lazygit.nix
../k9s.nix
../krew.nix
../direnv.nix
2025-11-06 17:14:39 -05:00
] ++ lib.optional isNixOS ../sway.nix;
2025-10-31 17:07:59 -04:00
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
];
}