{ lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ./networking.nix ./nginx.nix ]; networking.hostId = "bbdd1133"; networking.hostName = "thot"; boot = { loader = { grub = { enable = true; zfsSupport = true; devices = [ "/dev/disk/by-id/scsi-3600508b1001ca2198968a17f65ef3963" "/dev/disk/by-id/scsi-3600508b1001cd540705e8551011ec02d" ]; }; }; zfs = { extraPools = [ "head" "backups" ]; forceImportAll = lib.mkForce true; # Ajouté suite au passage en 26.05 par souci de cohérence forceImportRoot = lib.mkForce true; }; }; environment.systemPackages = with pkgs; [ apacheHttpd restic ]; system.stateVersion = "24.05"; }