From fddf1e5043160ed36b6226b221e1e0fa89534b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Thu, 9 Apr 2026 18:14:22 +0200 Subject: [PATCH] System Gen150 @ 2026-04-09-18:14:21 by jonas@monolith --- hosts/monolith/configuration.nix | 2 +- modules/system/ntsync.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/monolith/configuration.nix b/hosts/monolith/configuration.nix index 84f724c..212ba06 100644 --- a/hosts/monolith/configuration.nix +++ b/hosts/monolith/configuration.nix @@ -74,7 +74,7 @@ clientIdSopsKey = config.sops.secrets.spotifyShortcutsClientId.name; clientSecretSopsKey = config.sops.secrets.spotifyShortcutsClientSecret.name; }; - hive.ntsync.enable = false; + hive.ntsync.enable = true; # system packages environment.systemPackages = with pkgs; [ diff --git a/modules/system/ntsync.nix b/modules/system/ntsync.nix index 2d8cf27..ab7f127 100644 --- a/modules/system/ntsync.nix +++ b/modules/system/ntsync.nix @@ -11,7 +11,7 @@ config = lib.mkIf cfg.enable { assertions = [ { - assertion = lib.versionAtLeast config.boot.kernelModules.kernel.version "6.14"; + assertion = lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.14"; message = "ntsync requires at least linux 6.14"; } ];