inital nixos config commit

This commit is contained in:
2025-10-03 23:57:28 -05:00
commit bb73c757a9
29 changed files with 3809 additions and 0 deletions

12
modules/docker.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
virtualisation.docker = {
enable = true;
daemon.settings = {
experimental = true;
};
};
}

15
modules/ssh.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
# enable and configure openssh
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
PermitRootLogin = "no";
X11Forwarding = false;
};
};
}