summaryrefslogtreecommitdiff
path: root/hosts/full-iso/default.nix
blob: 8d6199ac49d6f48ba1d78d2b50f8df82219a28d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ modulesPath, ... }:
{
  imports = [
    (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
  ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  addons.desktop.hyprland.enable = true;
  addons.desktop.xfce.enable = false;
  addons.gpg.enable = false;
}