nixos/g810-led: fix module

This commit is contained in:
Gaetan Lepage
2024-11-17 11:48:24 +01:00
parent e13831335f
commit 8fac714b78
+2 -2
View File
@@ -36,9 +36,9 @@ in
};
config = lib.mkIf cfg.enable {
environment.etc."g810-led/profile" = lib.mkIf (cfg.profile != null) cfg.profile;
environment.etc."g810-led/profile".text = lib.mkIf (cfg.profile != null) cfg.profile;
services.udev.packages = [ config.package ];
services.udev.packages = [ cfg.package ];
};
meta.maintainers = with lib.maintainers; [ GaetanLepage ];