fix: environment not defined in hm

This commit is contained in:
Infinidoge 2021-09-19 21:21:58 -04:00
parent a9cd7fb56e
commit f9f905a771
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,4 @@
{ pkgs, ... }: {
environment.shells = with pkgs; [ bashInteractive ];
{ config, pkgs, ... }: {
programs = {
bash = {
enable = true;
@ -9,4 +7,6 @@
starship.enableBashIntegration = true;
};
config.environment.shells = with pkgs; [ bashInteractive ];
}