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