programs/lsd: add lsd
This commit is contained in:
parent
07fbc5de39
commit
cc10685f6d
2 changed files with 18 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
./bat.nix
|
||||
./direnv.nix
|
||||
./git.nix
|
||||
./lsd.nix
|
||||
./misc.nix
|
||||
# ./tmux.nix
|
||||
];
|
||||
|
|
17
modules/programs/terminal/programs/lsd.nix
Normal file
17
modules/programs/terminal/programs/lsd.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue