❄️ Nix configurations
at v2 21 lines 286 B view raw
1{ 2 config, 3 lib, 4 pkgs, 5 ... 6}: { 7 8 home.packages = with pkgs; [ 9 nodejs_22 # node for intellij etc 10 go # for ide support 11 devenv 12 direnv 13 age 14 sops 15 kubectl 16 ]; 17 18 nix.settings.trusted-users = [ "root" "alex" ]; 19 20 programs.k9s.enable = true; 21}