From 0785f0c5d36e442a7d65a5e35378c09903d39211 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Tue, 28 Apr 2026 20:15:33 +0200 Subject: Add KDE properly and fix live-cd --- hosts/full-iso/default.nix | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'hosts/full-iso/default.nix') diff --git a/hosts/full-iso/default.nix b/hosts/full-iso/default.nix index 8d6199a..06b46aa 100644 --- a/hosts/full-iso/default.nix +++ b/hosts/full-iso/default.nix @@ -1,4 +1,4 @@ -{ modulesPath, ... }: +{ modulesPath, lib, ... }: { imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-base.nix") @@ -6,8 +6,25 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + services.hardware.bolt.enable = true; + powerManagement.enable = true; - addons.desktop.hyprland.enable = true; - addons.desktop.xfce.enable = false; + networking.useDHCP = lib.mkDefault true; + + networking.hostName = "conscript-live"; # Define your hostname. + networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + + hardware.bluetooth.enable = true; + hardware.bluetooth.settings = { + General = { + Enable = "Source,Sink,Media,Socket"; + }; + }; + + hardware.bluetooth.powerOnBoot = true; + services.blueman.enable = true; + + addons.desktop.hyprland.enable = false; + addons.desktop.xfce.enable = true; addons.gpg.enable = false; } -- cgit v1.3.1