28 lines
478 B
Nix
28 lines
478 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.hardware.nixosModules.common-cpu-amd
|
|
inputs.hardware.nixosModules.common-gpu-amd
|
|
inputs.hardware.nixosModules.common-pc-ssd
|
|
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "nixdesk";
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
swapDevices = [
|
|
{
|
|
device = "/var/lib/swapfile";
|
|
randomEncryption.enable = true;
|
|
size = 16 * 1024;
|
|
}
|
|
];
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|