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.nix17
1 files changed, 15 insertions, 2 deletions
diff --git a/hosts/full-iso/default.nix b/hosts/full-iso/default.nix
index 06b46aa..6df9f5f 100644
--- a/hosts/full-iso/default.nix
+++ b/hosts/full-iso/default.nix
@@ -1,7 +1,12 @@
-{ modulesPath, lib, ... }:
+{
+ modulesPath,
+ lib,
+ config,
+ ...
+}:
{
imports = [
- (modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
+ (modulesPath + "/installer/cd-dvd/installation-cd-graphical-base.nix")
];
boot.loader.systemd-boot.enable = true;
@@ -21,6 +26,14 @@
};
};
+ hardware.nvidia = {
+ modesetting.enable = true;
+ powerManagement.enable = false;
+ open = true;
+ nvidiaSettings = true;
+ package = config.boot.kernelPackages.nvidiaPackages.stable;
+ };
+
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;