From 7ae9f55095ad0a5be50e164a90aad1e725261961 Mon Sep 17 00:00:00 2001 From: Kalle Struik Date: Tue, 4 Feb 2025 02:42:40 +0100 Subject: [PATCH] Add impermanence to template --- systems/template/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/template/configuration.nix b/systems/template/configuration.nix index a0916fc..6854654 100644 --- a/systems/template/configuration.nix +++ b/systems/template/configuration.nix @@ -1,4 +1,5 @@ { + inputs, modulesPath, ... }: @@ -6,6 +7,7 @@ nixpkgs.hostPlatform = "x86_64-linux"; imports = [ (modulesPath + "/profiles/qemu-guest.nix") + inputs.impermanence.nixosModules.impermanence ]; time.timeZone = "Europe/Amsterdam";