Enable transience feature for starship.

This commit is contained in:
ulic-youthlic 2025-06-05 09:28:57 +08:00
parent a80c2ef2c8
commit 91bafef163
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 53 additions and 16 deletions

View file

@ -37,6 +37,7 @@
hardware.asus.enable = true;
i18n.enable = true;
programs = {
bash.enable = true;
guix.enable = true;
dae.enable = true;
openssh.enable = true;

View file

@ -0,0 +1,18 @@
{
config,
lib,
...
}: let
cfg = config.youthlic.programs.bash;
in {
options = {
youthlic.programs.bash = {
enable = lib.mkEnableOption "bash";
};
};
config = lib.mkIf cfg.enable {
programs.bash = {
blesh.enable = true;
};
};
}

View file

@ -29,5 +29,6 @@
./supergfxd.nix
./radicle.nix
./wshowkeys.nix
./bash.nix
];
}