{ config, pkgs, ... }: { boot = { initrd.kernelModules = [ "zfs" ]; kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; loader.grub.device = "/dev/sda"; supportedFilesystems = [ "zfs" ]; zfs.devNodes = "/dev/disk/by-label"; }; environment.systemPackages = with pkgs; [ openstackclient ]; imports = [ ./hardware-configuration.nix ../common/core ../common/optional/db.nix ../common/optional/dev.nix ../common/optional/pipewire.nix ../common/optional/services/openssh.nix ../common/optional/services/xorg.nix ../common/optional/zfs.nix ../common/users/nipsy ../common/users/root ]; networking = { hostId = "2d990f74"; hostName = "richese"; nftables.enable = true; }; services.xserver.videoDrivers = [ "vmware" ]; system.stateVersion = "23.11"; virtualisation.virtualbox.guest.enable = true; # no longer in unstable apparently #virtualisation.virtualbox.guest.x11 = true; }