update: misc

This commit is contained in:
FabricSoul 2025-08-07 19:16:35 -04:00
parent ac014e766f
commit 900df161db
2 changed files with 9 additions and 7 deletions

View file

@ -10,12 +10,12 @@
./hardware-configuration.nix
# Common configurations
../common/optional/plasma.nix
# ../common/optional/plasma.nix
../common/global
../common/optional/nvidia.nix
../common/optional/docker.nix
../common/optional/steam.nix
../common/optional/flatpak.nix
# ../common/optional/flatpak.nix
../common/optional/fcitx5.nix
../common/optional/bluetooth.nix
../common/optional/sunshine.nix
@ -37,7 +37,7 @@
users.users.fabric = {
isNormalUser = true;
description = "fabric";
extraGroups = ["networkmanager" "wheel" "docker"];
extraGroups = ["networkmanager" "wheel" "docker" "video"];
shell = pkgs.zsh;
};
@ -68,9 +68,7 @@
};
# Display manager configuration
services.displayManager.defaultSession = "hyprland";
programs.hyprland.enable = true;
services.displayManager.defaultSession = "dwl";
# Basic system packages
environment.systemPackages = with pkgs; [

View file

@ -14,7 +14,11 @@
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "thunderbolt" "usb_storage" "usbhid" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd"];
boot.kernelModules = ["kvm-amd" "v4l2loopback"];
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
hardware.enableRedistributableFirmware = true;