summaryrefslogtreecommitdiff
path: root/hosts/full-iso/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/full-iso/default.nix')
-rw-r--r--hosts/full-iso/default.nix23
1 files changed, 20 insertions, 3 deletions
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;
}