meta: Begin making shell module customizable

This commit is contained in:
Donovan Glover
2024-04-04 12:25:15 -04:00
parent a03963d1f7
commit dd38bf1c4c

View File

@@ -1,9 +1,16 @@
{ pkgs, ... }:
{ pkgs, config, lib, ... }:
let
inherit (pkgs) fish htop-vim;
inherit (lib) mkEnableOption mkIf;
cfg = config.modules.shell;
in
{
options.modules.shell = {
};
config = with cfg; {
users.defaultUserShell = fish;
environment.shells = [ fish ];
@@ -275,4 +282,5 @@ in
};
};
};
};
}