From 5a00407f5417fed03f9b21ff7febd1935e5855df Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 27 Jan 2024 16:52:00 +0800 Subject: [PATCH] apps/run-workflow-with-vm: update base config --- apps/run-workflow-with-vm/configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/run-workflow-with-vm/configuration.nix b/apps/run-workflow-with-vm/configuration.nix index 3eb54fcc..a3a4167b 100644 --- a/apps/run-workflow-with-vm/configuration.nix +++ b/apps/run-workflow-with-vm/configuration.nix @@ -17,6 +17,8 @@ import { modules = extraModules ++ [ + + @@ -35,6 +37,8 @@ import { ]; config = { + home-manager.useUserPackages = lib.mkDefault true; + home-manager.useGlobalPkgs = lib.mkDefault true; home-manager.sharedModules = extraHomeModules ++ [ @@ -54,9 +58,6 @@ import { ]; system.stateVersion = "23.11"; - - home-manager.useUserPackages = lib.mkDefault true; - home-manager.useGlobalPkgs = lib.mkDefault true; }; }) ];