This commit is contained in:
mjallen18
2025-08-21 15:39:24 -05:00
parent 6025b6c4f1
commit bd64283f04
14 changed files with 768 additions and 346 deletions

View File

@@ -17,7 +17,7 @@ in
{
imports = [
./boot.nix
./networking.nix
# ./networking.nix - moved to modules/nixos/network
./services.nix
./sops.nix
];
@@ -27,6 +27,15 @@ in
desktop.hyprland.enable = false;
network = {
hostName = "pi5";
ipv4 = {
method = "manual";
gateway = "10.0.1.1";
dns = "10.0.1.1";
};
firewall = {
enable = true;
allowPing = true;
};
};
};