dotfiles/nixos/boxes/cupsnet/default.nix

29 lines
435 B
Nix
Raw Normal View History

2024-01-01 13:43:58 +00:00
{
config,
pkgs,
inputs,
lib,
...
}: {
imports = [
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
../cli.nix
../send-logs.nix
./boot.nix
2024-01-15 14:15:15 +00:00
./cryptpad.nix
2024-01-01 13:43:58 +00:00
./disks.nix
2024-01-16 22:08:28 +00:00
./foundryvtt.nix
2024-01-01 16:50:13 +00:00
./gitea.nix
./ssh.nix
2024-01-01 13:43:58 +00:00
];
networking.hostName = "cupsnet";
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 100;
};
time.timeZone = "Europe/London";
}