home-manager: Add shell configuration

This commit is contained in:
Florian RICHER 2024-03-07 22:39:49 +01:00
parent 1ca19c4af2
commit efd9950f81
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./programs/shell.nix
./programs/git.nix
# ./programs/emacs.nix
./programs/jetbrains-toolbox.nix

5
home/programs/shell.nix Normal file
View file

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