summaryrefslogtreecommitdiff
path: root/hosts/full-iso
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
commit892de67a9f64d0b0cdb023d830a019d8feec0a57 (patch)
tree0c5fd0c60ef93bb5cdc5f83c8cade0c5dddb4899 /hosts/full-iso
parentf5b37610b3835ea26757ef36d554ec598d53100c (diff)
Nix fmt
Diffstat (limited to 'hosts/full-iso')
-rw-r--r--hosts/full-iso/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/hosts/full-iso/default.nix b/hosts/full-iso/default.nix
index d2ca00a..e17e620 100644
--- a/hosts/full-iso/default.nix
+++ b/hosts/full-iso/default.nix
@@ -1,12 +1,13 @@
-{modulesPath, pkgs, ...}: {
+{ modulesPath, pkgs, ... }:
+{
imports = [
- (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
+ (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
];
- boot.loader.systemd-boot.enable = true;
+ 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;
-}
+ addons.desktop.hyprland.enable = true;
+ addons.desktop.xfce.enable = false;
+ addons.gpg.enable = false;
+}