25 lines
364 B
Nix
25 lines
364 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
|
||
|
../cli.nix
|
||
|
../send-logs.nix
|
||
|
./boot.nix
|
||
|
./disks.nix
|
||
|
];
|
||
|
networking.hostName = "airnix";
|
||
|
|
||
|
zramSwap = {
|
||
|
enable = true;
|
||
|
algorithm = "zstd";
|
||
|
memoryPercent = 100;
|
||
|
};
|
||
|
|
||
|
time.timeZone = "Europe/London";
|
||
|
}
|