14 lines
231 B
Nix
14 lines
231 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./hardware
|
|
./users
|
|
../../modules/system
|
|
(modulesPath + "/profiles/headless.nix")
|
|
];
|
|
|
|
networking.hostName = "qemu";
|
|
system.stateVersion = "24.11";
|
|
}
|