17 lines
241 B
Nix
17 lines
241 B
Nix
{ modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
./hardware
|
|
./services
|
|
|
|
./nix.nix
|
|
./state-version.nix
|
|
./system-packages.nix
|
|
./timezone.nix
|
|
];
|
|
}
|
|
|