chore: add bash to path in flake

Signed-off-by: jolheiser <john.olheiser@gmail.com>
main
jolheiser 2024-02-22 13:59:34 -06:00
parent 624c72941c
commit ba6ffd62ec
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
1 changed files with 1 additions and 2 deletions

View File

@ -132,7 +132,6 @@
group = "${cfg.group}";
isSystemUser = true;
isNormalUser = false;
useDefaultShell = true;
description = "user for ugit service";
};
users.groups."${cfg.group}" = {};
@ -151,7 +150,7 @@
in "${cfg.package}/bin/ugitd ${builtins.concatStringsSep " " args}";
wantedBy = ["multi-user.target"];
after = ["network-online.target"];
path = [cfg.package pkgs.git];
path = [cfg.package pkgs.git pkgs.bash];
serviceConfig = {
User = cfg.user;
Group = cfg.group;