From b4fcc953f9e5971dbb52af1d8e9e3ec84d0e7183 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Tue, 18 Jun 2024 10:35:42 +0300 Subject: [PATCH] Live : Also diable autoupdate timer. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 5d015e9..dd33187 100644 --- a/flake.nix +++ b/flake.nix @@ -311,6 +311,7 @@ # Disable auto-updates as they are not possible for Live ISO. { systemd.services.autoupdate.enable = nixpkgs.lib.mkForce false; } + { systemd.timers.autoupdate.enable = nixpkgs.lib.mkForce false; } # Base Live images also require the LTS kernel. ({ pkgs, ... }: { boot.kernelPackages = nixpkgs.lib.mkForce pkgs.linuxPackages; })