Add skip01 NixOS configuration for Intel NUC server

- Created systems/skip01.nix with 13th gen Intel i5 NUC optimizations
- Configured for headless server operation with SSH access
- Enabled Docker and Podman for container services
- Added Intel graphics support and thermal management
- Network performance tuning for server workloads
- Added skip01 to flake.nix nixosConfigurations
This commit is contained in:
Julian Sutter 2025-07-29 19:03:57 -07:00
parent 7a057122db
commit 1e70121b00
2 changed files with 94 additions and 0 deletions

View file

@ -64,6 +64,16 @@
./desktop/office.nix
];
};
skip01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
home-manager.nixosModules.home-manager
./systems/common.nix
./systems/skip01.nix
./users/jsutter.nix
./servers/common.nix
];
};
};
};
}