dotfiles/nixos/boxes/cupsnet/default.nix
Cyryl Płotnicki 26cb86cae2
Some checks failed
use nix / build (push) Failing after 2s
move actions runner to cupsnet
2024-03-16 15:23:27 +00:00

27 lines
500 B
Nix

{ config, pkgs, inputs, lib, ... }: {
imports = [
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
../cli.nix
../send-logs.nix
./boot.nix
./cryptpad.nix
./disks.nix
./forgejo.nix
./foundryvtt.nix
./gitea-runner.nix
./mastodon.nix
./rss.nix
./ssh.nix
./videos.nix
];
networking.hostName = "cupsnet";
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 100;
};
time.timeZone = "Europe/London";
}