programs/lsd: add lsd

This commit is contained in:
Anthony Rodriguez 2025-02-19 18:00:01 +01:00
parent 07fbc5de39
commit cc10685f6d
Signed by: nezia
SSH key fingerprint: SHA256:R/ue1eTzTHUoo77lJD/3fSUsyL4AwvcHImU5BAZai+8
2 changed files with 18 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./bat.nix ./bat.nix
./direnv.nix ./direnv.nix
./git.nix ./git.nix
./lsd.nix
./misc.nix ./misc.nix
# ./tmux.nix # ./tmux.nix
]; ];

View file

@ -0,0 +1,17 @@
{
lib,
config,
...
}: let
inherit (lib.modules) mkIf;
inherit (config.local.systemVars) username;
inherit (config.local.profiles) desktop;
in {
config = mkIf desktop.enable {
hjem.users.${username} = {
rum.programs.lsd = {
enable = true;
};
};
};
}