enabled bash on LXCs

This commit is contained in:
John Lancaster
2026-03-14 12:46:09 -05:00
parent ab3e1da951
commit 1d084311a3
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
flake.modules.homeManager.bash = { pkgs, ... }:
flake.modules.homeManager.bash = { pkgs, lib, config, ... }:
{
programs.bash = {
programs.bash = lib.mkIf (config.shell.program == "bash") {
enable = true;
enableCompletion = true;
package = pkgs.bash;