updated flake inputs, fixed evaluation warnings

removed the neon configuration from the flake
This commit is contained in:
2025-07-14 12:30:10 -04:00
parent c12ae3a9e9
commit 54d1c15823
19 changed files with 273 additions and 850 deletions

View File

@@ -0,0 +1,15 @@
{ lib, config, pkgs, ... }: {
options = {
movOpts.hardwareCfg.kernelModule.enable = lib.mkEnableOption "enables kernel module configuration";
};
config = lib.mkIf config.movOpts.hardwareCfg.kernelModule.enable {
hardware.enableAllFirmware = true;
environment.systemPackages = [
pkgs.linux-firmware
];
boot.kernelModules = [
"amdgpu"
"rtw89_8852ce"
];
};
}