Add cluster host definitions, cluster utilities, and admin, switch nixpkgs to stable

This commit is contained in:
2025-12-07 16:37:20 -08:00
parent af7b1d1b63
commit e717edc177
14 changed files with 579 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
{ config, pkgs, ... }:
{
users.users.cluster-admin = {
initialPassword = "changeme";
isNormalUser = true;
description = "Cluster Admin";
extraGroups = [
"networkmanager"
"wheel"
];
};
home-manager.users.cluster-admin = {
home.username = "cluster-admin";
home.homeDirectory = "/home/cluster-admin";
home.stateVersion = "25.05";
home.packages = with pkgs; [ ];
programs.bash.enable = true;
programs.git = {
enable = true;
settings.user = {
name = "Corwin Perren";
email = "caperren@gmail.com";
};
};
programs.kitty = {
enable = true;
font.name = "JetBrains Mono";
};
};
}