{...}:# Note: only explicit parameters are passed to this.
{pkgs,modulesPath,lib,...}:{
imports=[
self.inputs.disko.nixosModules.disko
(modulesPath+"/installer/scan/not-detected.nix")
(modulesPath+"/profiles/headless.nix")
(modulesPath+"/profiles/minimal.nix")
(modulesPath+"/profiles/qemu-guest.nix")
./code_server_disk.nix
];
system.stateVersion="24.11";
boot.kernelParams=["zfs.zfs_arc_max=536870912"];
boot.zfs.extraPools=["zroot"];
boot.initrd.postMountCommands=lib.mkAfter''
zfsrollback-rzroot/root@blank
'';
services.zfs.autoScrub.enable=true;
boot.loader.grub={
enable=true;
# No need to set devices, disko will add all devices that have an EF02 partition to the list already.
# devices = [];
efiSupport=true;
efiInstallAsRemovable=true;
};
fileSystems={
"/var/lib/systemd"={
device="/persisted/var/lib/systemd";
options=["bind"];
};
"/var/lib/forgejo"={
device="/persisted/var/lib/forgejo";
options=["bind"];
};
};
networking.hostId="9f1dfd86";# Required by ZFS.
networking.useNetworkd=true;
networking.firewall.logRefusedConnections=false;
nix.gc.automatic=true;
nix.gc.dates="02:15";
services.cloud-init={
enable=true;
network.enable=true;
settings={
datasource_list=["Hetzner"];
# The NixOS cloud-init settings declares the entire `system_info` with `lib.mkDefault`, so we need to copy the defaults from it here and make the changes we want to make.