From 170f814b0ba9eb666cd08f70c13fc7ee7d6cb2ae Mon Sep 17 00:00:00 2001 From: Jimbo Date: Mon, 24 Feb 2025 21:23:38 -0500 Subject: [PATCH] Fix all the ISO --- hosts/iso/default.nix | 11 +++++++++-- modules/system/devices/boot/plymouth/default.nix | 6 +++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/hosts/iso/default.nix b/hosts/iso/default.nix index 738fc65..00281a1 100644 --- a/hosts/iso/default.nix +++ b/hosts/iso/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: { imports = [ ./filesystems @@ -9,13 +9,20 @@ networking = { hostName = "extern"; - wireguard.interfaces.wgc.ips = [ "10.100.0.21/24" ]; + wg-quick.interfaces.wgc.address = [ "10.100.0.21/24" ]; }; system = { desktop.enable = true; wireless.enable = true; wireguard.client.enable = true; + video.nvidia.enable = true; + libvirtd.enable = true; stateVersion = "24.11"; }; + + services = { + btrfs.autoScrub.enable = lib.mkForce false; + fstrim.enable = lib.mkForce false; + }; } diff --git a/modules/system/devices/boot/plymouth/default.nix b/modules/system/devices/boot/plymouth/default.nix index 0aee128..48c0cc8 100644 --- a/modules/system/devices/boot/plymouth/default.nix +++ b/modules/system/devices/boot/plymouth/default.nix @@ -1,9 +1,9 @@ -{ config, lib, pkgs, ... }: +{ config, lib, ... }: { boot = lib.mkIf config.system.desktop.enable { plymouth.enable = true; - loader.timeout = 0; - consoleLogLevel = 0; + loader.timeout = lib.mkForce 0; + consoleLogLevel = lib.mkForce 0; initrd.verbose = false; kernelParams = [ "quiet"