From 021c7f72000f7c08067bd70090e6be90a3aa0ebe Mon Sep 17 00:00:00 2001 From: satr14 Date: Wed, 15 Apr 2026 13:13:54 +0700 Subject: [PATCH] remove theme import --- modules/hardware/homelab.nix | 19 +++++-------------- modules/home/core/apps.nix | 1 + modules/home/default.nix | 1 - 3 files changed, 6 insertions(+), 15 deletions(-) diff --git a/modules/hardware/homelab.nix b/modules/hardware/homelab.nix index ac3cb0c..906b24b 100644 --- a/modules/hardware/homelab.nix +++ b/modules/hardware/homelab.nix @@ -1,22 +1,13 @@ { ... }: { imports = [ + # ./misc/cpu-hotplug.nix + # ./misc/serial.nix + # ./misc/qemu-virtio.nix + # ^^ only used if vm + ./core/firmware.nix ./core/igpu.nix - ./misc/cpu-hotplug.nix - ./misc/serial.nix ./misc/disks.nix ]; - boot.initrd.availableKernelModules = [ - "virtio_net" - "virtio_pci" - "virtio_mmio" - "virtio_blk" - "virtio_scsi" - "virtio_console" - ]; - services = { - qemuGuest.enable = true; - spice-vdagentd.enable = true; - }; } diff --git a/modules/home/core/apps.nix b/modules/home/core/apps.nix index 99fb001..c20f566 100644 --- a/modules/home/core/apps.nix +++ b/modules/home/core/apps.nix @@ -36,6 +36,7 @@ vlc brave + flameshot libreoffice appimage-run # keepassxc diff --git a/modules/home/default.nix b/modules/home/default.nix index a998633..00bbbb6 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,6 +1,5 @@ { username, ctp-opt, ... }: { imports = [ - ./rice/theme.nix ./core/shell.nix ./core/cli.nix ];