Split out bash from home config.

This commit is contained in:
jay
2025-07-02 05:37:57 -04:00
parent 0e371fc26f
commit aede707b0a
2 changed files with 4 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
imports = [ imports = [
inputs.hyprpanel.homeManagerModules.hyprpanel inputs.hyprpanel.homeManagerModules.hyprpanel
./programs/bash.nix
./programs/lazygit.nix ./programs/lazygit.nix
./programs/rofi.nix ./programs/rofi.nix
./services/arrpc.nix ./services/arrpc.nix
@@ -47,8 +48,6 @@
EDITOR = "nano"; EDITOR = "nano";
}; };
programs.bash.enable = true;
programs.alacritty = lib.mkForce { programs.alacritty = lib.mkForce {
enable = true; enable = true;
settings = { settings = {

View File

@@ -0,0 +1,3 @@
{ pkgs, ...}: {
programs.bash.enable = true;
}