summaryrefslogtreecommitdiff
path: root/hosts/full-iso/default.nix
blob: e17e620ff09839627b461dbeceb417d57f2947f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ modulesPath, pkgs, ... }:
{
  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;
}