Home

cfg-playground @main - refs - log -
-
https://git.jolheiser.com/cfg-playground.git
cfg playground
tree log patch
fix: add nix to module path Signed-off-by: jolheiser <git@jolheiser.com>
Signature
-----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQBb6V46Eaa7Q6ySTDb17TqZZ18cOY4SI7uJpcWWNbxAtGEV+raIAhXC92A3s8RnLod gPPbuZxB/UWSi0YbFzkgM= -----END SSH SIGNATURE-----
jolheiser <git@jolheiser.com>
1 month ago
1 changed files, 5 additions(+), 1 deletions(-)
M nix/module.nix -> nix/module.nix
diff --git a/nix/module.nix b/nix/module.nix
index 534b01fb23485f65cefa75e51cfb270faaf22a5f..966abbca354fceb00a20122d93124120185b6321 100644
--- a/nix/module.nix
+++ b/nix/module.nix
@@ -84,8 +84,12 @@           in
           "${cfg.package}/bin/cfg-playground ${builtins.concatStringsSep " " args}";
         wantedBy = [ "multi-user.target" ];
         after = [ "network.target" ];
-}:
+        path = [
+let
   cfg = config.services.cfg-playground;
+          pkgs.nix
+          pkgs.nixfmt-rfc-style
+        ];
         serviceConfig = {
           User = cfg.user;
           Group = cfg.group;