commit 751587e2276feacd10e54f3c3b2919e907721d4f
parent 3efd043b508d2bf4ff8a4c67d4ece9389569fcad
Author: Vincent Demeester <vincent@sbr.pm>
Date: Wed, 3 Jun 2020 15:34:32 +0200
programs.crc: fix default package
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/programs/crc.nix b/modules/programs/crc.nix
@@ -9,7 +9,7 @@ in
programs.crc = {
enable = mkOption { default = false; description = "wether to enable crc"; type = types.bool; };
package = mkOption {
- default = pkgs.crc;
+ default = pkgs.my.crc; # FIXME use pkgs.crc at some point
description = "crc package to be used";
type = types.package;
};