nix/nixos/zen/configuration.nix
iofq f022e338b0
Some checks are pending
/ check (push) Waiting to run
opentofu incus
2026-03-23 00:14:25 -05:00

20 lines
311 B
Nix

{
host,
config,
pkgs,
pkgs-unstable,
...
}:
{
imports = [
./hardware-configuration.nix
];
machine.sys.zram = false;
machine.sys.swap = false;
services = {
zfs.autoScrub.enable = true;
zfs.autoSnapshot.enable = true;
fstrim.enable = true;
nfs.server.enable = true;
};
}