{ inputs, ... }: let # Disko setup fsType = "btrfs"; # one of ext4 or btrfs. Use btrfs if using impermanence dev = "/dev/disk/by-id/ata-QEMU_HARDDISK_QM00005"; encrypted = false; # currrently only applies to btrfs impermanence = false; user = "admin"; in { imports = [ # Create users for this host ../common/users/${user} # Root disk configuration inputs.disko.nixosModules.disko (import ../common/disks { device = dev; impermanence = impermanence; fsType = fsType; encrypted = encrypted; }) # Import core options ./hardware-configuration.nix ../common/core # Import optional options ../common/optional/openssh.nix ../common/optional/docker ../common/optional/docker/postgres.nix ]; boot = { loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; timeout = 3; }; }; networking = { hostName = "nebula"; networkmanager.enable = true; enableIPv6 = false; }; boot.supportedFilesystems = [ "zfs" ]; boot.zfs.forceImportRoot = false; networking.hostId = "18aec5d7"; boot.zfs.extraPools = [ "zspeed" ]; services.libinput.enable = true; }