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