This commit is contained in:
Michael Thomson
2026-02-13 11:39:55 -05:00
parent 0ed4c47c0e
commit 04ddc8f9bf
5 changed files with 7 additions and 20 deletions

View File

@@ -1,9 +0,0 @@
{
pkgs,
config,
...
}: {
programs.ssh = {
enable = true;
};
}

View File

@@ -10,7 +10,6 @@
hardware.nvidia.modesetting.enable = true;
hardware.nvidia.nvidiaSettings = true;
hardware.nvidia.open = false;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.beta;
services.xserver.videoDrivers = ["nvidia"];
}

View File

@@ -1,17 +1,16 @@
{
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
containers = {
enable = true;
registries = {
insecure = ["artifactory.symcor.com"];
};
};
users.users.mthomson = {
extraGroups = [
"podman"
];
};
}

View File

@@ -1,9 +1,7 @@
{
services.openssh = {
enable = true;
# require public key authentication for better security
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
#settings.PermitRootLogin = "yes";
};
}