
Some checks are pending
🏠 Home Lab CI/CD Pipeline / 🔍 Validate Configuration (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🔨 Build Configurations (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔒 Security Audit (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📚 Documentation & Modules (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 🔄 Update Dependencies (push) Waiting to run
🏠 Home Lab CI/CD Pipeline / 🚀 Deploy Configuration (push) Blocked by required conditions
🏠 Home Lab CI/CD Pipeline / 📢 Notify Results (push) Blocked by required conditions
- Remove leftover networking.nix files from machine directories - ZFS configuration moved to machine-specific configuration where it belongs - Network module now contains only networking-related configuration - Improved separation of concerns between network and machine configs
21 lines
425 B
Nix
21 lines
425 B
Nix
# Networking Configuration - congenital-optimist
|
|
# AMD Threadripper workstation network setup
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
# Machine-specific network configuration
|
|
networking = {
|
|
hostName = "congenital-optimist";
|
|
hostId = "8425e349";
|
|
networkmanager.enable = true;
|
|
|
|
# Additional firewall ports for workstation services
|
|
firewall.allowedTCPPorts = [
|
|
];
|
|
};
|
|
|
|
}
|