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
|
2024-02-04 22:33:26 +00:00
|
|
|
./mastodon.nix
|
2024-02-07 20:07:12 +00:00
|
|
|
./rss.nix
|
2024-01-01 16:50:13 +00:00
|
|
|
./ssh.nix
|
2024-01-16 22:41:32 +00:00
|
|
|
./videos.nix
|
2024-01-01 13:43:58 +00:00
|
|
|
];
|
|
|
|
networking.hostName = "cupsnet";
|
|
|
|
|
|
|
|
zramSwap = {
|
|
|
|
enable = true;
|
|
|
|
algorithm = "zstd";
|
|
|
|
memoryPercent = 100;
|
|
|
|
};
|
|
|
|
|
|
|
|
time.timeZone = "Europe/London";
|
|
|
|
}
|