configure actual display manager

This commit is contained in:
2026-08-18 10:26:11 -05:00
parent 92d2b33e91
commit b2fa75befa
4 changed files with 25 additions and 17 deletions

View File

@@ -23,6 +23,7 @@
"sd_mod"
"rtsx_pci_sdmmc"
"iwlwifi"
"iwlmvm"
];
kernelModules = [ ];
systemd = {
@@ -38,6 +39,7 @@
boot.kernelModules = [
"kvm-intel"
"iwlwifi"
"iwlmvm"
];
boot.extraModulePackages = [ ];
@@ -60,5 +62,11 @@
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware = {
bluetooth = {
enable = true;
powerOnBoot = false;
};
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}