dotfiles/nixos-modules/hardware/ecc-memory.nix
Fabian Hauser e02d86dffd
All checks were successful
CI / build (push) Successful in 2m9s
Update and clean up modules
2025-03-03 23:46:19 +02:00

13 lines
238 B
Nix

{
config,
lib,
...
}:
{
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;
};
}