homelab/hosts/physique/hyponix/default.nix
2025-08-06 00:18:58 +02:00

16 lines
247 B
Nix

{ config, lib, ... }:
{
imports = [
./hardware-configuration.nix
./networking.nix
./services
../../../modules
];
boot.loader.grub.device = "/dev/sda";
networking.hostName = "hyponix";
system.stateVersion = "25.05";
}