Update and clean up modules
All checks were successful
CI / build (push) Successful in 2m9s

This commit is contained in:
Fabian Hauser 2025-03-03 23:46:19 +02:00
parent cc3d5090ac
commit e02d86dffd
21 changed files with 270 additions and 241 deletions

View file

@ -1,8 +1,13 @@
{
config,
lib,
...
}:
{
hardware.rasdaemon = {
enable = true;
options.dotfiles.hardware.ecc-memory.enable = lib.mkEnableOption "Enable ECC Memory Support";
config = lib.mkIf config.dotfiles.hardware.ecc-memory.enable {
hardware.rasdaemon.enable = true;
};
}