nix/home-manager/modules/shell/default.nix

10 lines
193 B
Nix
Raw Normal View History

{ lib, config, ... }:
2024-12-02 03:57:34 -07:00
{
imports = [
./btop.nix
2024-12-04 19:31:29 -07:00
./direnv.nix
(lib.mkIf config.hmOptions.plasma.enable ./konsole.nix)
2024-12-02 19:35:25 -07:00
./starship.nix
./zsh.nix
2024-12-02 03:57:34 -07:00
];
}