14 lines
222 B
Nix
14 lines
222 B
Nix
{inputs, ...}: {
|
|
imports = with inputs.hardware.nixosModules; [
|
|
common-cpu-intel
|
|
common-pc-hdd
|
|
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "hopper";
|
|
|
|
swapDevices = [];
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|