Merge branch 'main' of src:greg/nixos-config

This commit is contained in:
Greg Hellings
2025-06-11 00:25:55 -05:00
6 changed files with 64 additions and 53 deletions
+1 -1
View File
@@ -210,7 +210,7 @@ in
shell = config.programs.xonsh.package;
initialPassword = "password";
openssh.authorizedKeys.keys = lib.strings.splitString "\n" (
builtins.readFile ../../home/ssh/authorized_keys
builtins.readFile ../home/ssh/authorized_keys
);
};
-3
View File
@@ -1,7 +1,6 @@
{
config,
lib,
pkgs,
top,
...
}:
@@ -23,8 +22,6 @@
];
};
environment.defaultPackages = [ pkgs.code-cursor ];
greg = {
home = true;
gnome.enable = true;
-13
View File
@@ -1,5 +1,4 @@
{
config,
lib,
top,
...
@@ -75,18 +74,6 @@
};
services = {
gitlab-runner = {
enable = true;
settings = {
concurrent = 5;
};
services = {
kubernetes = {
authenticationTokenConfigFile = config.age.secrets.runner-reg.path;
executor = "shell";
};
};
};
k3s.clusterInit = true; # This is the first node in the cluster
openssh = {
enable = true;