16 lines
247 B
Nix
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";
|
|
}
|