18 lines
219 B
Nix
18 lines
219 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
./services
|
|
./user
|
|
];
|
|
|
|
system = {
|
|
nixos.tags = [ "pc" ];
|
|
stateVersion = "25.05";
|
|
};
|
|
|
|
deployment.targetHost = "";
|
|
}
|