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 ./hardware-configuration.nix
# Common configurations # Common configurations
../common/optional/plasma.nix # ../common/optional/plasma.nix
../common/global ../common/global
../common/optional/nvidia.nix ../common/optional/nvidia.nix
../common/optional/docker.nix ../common/optional/docker.nix
../common/optional/steam.nix ../common/optional/steam.nix
../common/optional/flatpak.nix # ../common/optional/flatpak.nix
../common/optional/fcitx5.nix ../common/optional/fcitx5.nix
../common/optional/bluetooth.nix ../common/optional/bluetooth.nix
../common/optional/sunshine.nix ../common/optional/sunshine.nix
@ -37,7 +37,7 @@
users.users.fabric = { users.users.fabric = {
isNormalUser = true; isNormalUser = true;
description = "fabric"; description = "fabric";
extraGroups = ["networkmanager" "wheel" "docker"]; extraGroups = ["networkmanager" "wheel" "docker" "video"];
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
@ -68,9 +68,7 @@
}; };
# Display manager configuration # Display manager configuration
services.displayManager.defaultSession = "hyprland"; services.displayManager.defaultSession = "dwl";
programs.hyprland.enable = true;
# Basic system packages # Basic system packages
environment.systemPackages = with pkgs; [ 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.availableKernelModules = ["nvme" "xhci_pci" "ahci" "thunderbolt" "usb_storage" "usbhid" "sd_mod"];
boot.initrd.kernelModules = []; boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd"]; boot.kernelModules = ["kvm-amd" "v4l2loopback"];
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;