added shell = pkgs.bash

This commit is contained in:
2025-01-23 22:44:53 -05:00
parent 799794ebe5
commit 633a48af7b
2 changed files with 4 additions and 3 deletions

View File

@@ -69,6 +69,7 @@ in
}; };
users = { users = {
users.github-runners = { users.github-runners = {
shell = pkgs.bash;
isSystemUser = true; isSystemUser = true;
group = "github-runners"; group = "github-runners";
uid = 601; uid = 601;

View File

@@ -1,10 +1,10 @@
{ pkgs, ... }:
{ {
imports = [ imports = [ ./nix_builder.nix ];
./nix_builder.nix
];
users = { users = {
users.github-runners = { users.github-runners = {
shell = pkgs.bash;
isSystemUser = true; isSystemUser = true;
group = "github-runners"; group = "github-runners";
uid = 601; uid = 601;