initial commit

This commit is contained in:
2026-02-22 20:22:28 -05:00
commit de4c297252
8 changed files with 202 additions and 0 deletions

9
common/core.nix Normal file
View File

@@ -0,0 +1,9 @@
{
imports = [
./networking.nix
];
nixpkgs.config.allowUnfree = true;
programs.nix-ld.enable = true;
security.sudo.wheelNeedsPassword = false;
system.stateVersion = "25.11";
}

19
common/networking.nix Normal file
View File

@@ -0,0 +1,19 @@
{ config, ... }:
{
networking = {
hostName = config.my.hostname;
networkmanager = {
enable = true;
};
hosts = {
"10.105.6.201" = ["weyma-omni.infra.dubyatp.xyz"];
};
};
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
};
};
}