19 lines
283 B
Nix
19 lines
283 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
./user
|
|
];
|
|
|
|
system = {
|
|
nixos.tags = [ "pc" ];
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
deployment.targetHost = "4e4:535:9d47:f367:becd:6557:458d:5b1b";
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
}
|