We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent f8078db commit a8c97adCopy full SHA for a8c97ad
nixos/modules/services/networking/radicale.nix
@@ -9,7 +9,7 @@ let
9
confFile = pkgs.writeText "radicale.conf" cfg.config;
10
11
# This enables us to default to version 2 while still not breaking configurations of people with version 1
12
- defaultPackage = if versionAtLeast "17.09" config.system.stateVersion then {
+ defaultPackage = if versionAtLeast config.system.stateVersion "17.09" then {
13
pkg = pkgs.radicale2;
14
text = "pkgs.radicale2";
15
} else {
nixos/tests/radicale.nix
@@ -43,6 +43,7 @@ in
43
});
44
})
45
];
46
+ system.stateVersion = "17.03";
47
};
48
radicale1_export = lib.recursiveUpdate radicale1 {
49
services.radicale.extraArgs = [
0 commit comments