23 lines
417 B
Nix
23 lines
417 B
Nix
{ config, modules, modulesPath, overlays, pkgs, ... }: {
|
|
networking.hostName = "fondue";
|
|
system.stateVersion = "21.05";
|
|
time.timeZone = "Australia/Melbourne";
|
|
|
|
imports = with modules.system; [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
base
|
|
input
|
|
kernel
|
|
nix
|
|
packages
|
|
security
|
|
snapper
|
|
|
|
./filesystem.nix
|
|
./kernel.nix
|
|
./networking.nix
|
|
|
|
../../users/rin.nix
|
|
];
|
|
}
|
|
|