summaryrefslogtreecommitdiffstats
path: root/tv
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2020-11-18 02:03:20 +0100
committertv <tv@krebsco.de>2020-11-18 02:06:43 +0100
commite86bc24926f346ae1b0489e8f5cfbe770421c7a4 (patch)
tree56dc3dc20d419951bb6d7f682394473171bff6ad /tv
parentbd02b41f110c59e3ea6b818d3108351ec5ef9f3b (diff)
tv config: enable nscd also on 20.09pre etc.
Diffstat (limited to 'tv')
-rw-r--r--tv/2configs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tv/2configs/default.nix b/tv/2configs/default.nix
index e6119f9d..87a5c2e1 100644
--- a/tv/2configs/default.nix
+++ b/tv/2configs/default.nix
@@ -92,7 +92,7 @@ with import <stockholm/lib>;
services.cron.enable = false;
services.nscd.enable =
# Since 20.09 nscd doesn't cache anymore.
- versionAtLeast version "20.09";
+ versionAtLeast (versions.majorMinor version) "20.09";
services.ntp.enable = false;
services.timesyncd.enable = true;
}