flocon/modules/programs/terminal/shell/default.nix

21 lines
316 B
Nix
Raw Permalink Normal View History

{
2025-01-31 20:06:43 +01:00
lib,
pkgs,
config,
...
}: let
inherit (lib) mkIf;
inherit (config.local.systemVars) username;
in {
2024-09-24 15:09:36 +02:00
imports = [
2024-09-08 16:00:25 +02:00
./starship.nix
./nushell.nix
2024-09-24 15:09:36 +02:00
./zoxide.nix
2025-01-31 20:06:43 +01:00
./zsh.nix
];
2025-01-31 20:06:43 +01:00
config = mkIf (config.local.systemVars.desktop != "none") {
2025-01-31 20:06:43 +01:00
users.users.${username}.shell = pkgs.zsh;
};
2024-08-25 21:58:12 +02:00
}