feat(home:profiles): add console-tools suite
This commit is contained in:
parent
acb5369637
commit
6cdfe70495
1 changed files with 25 additions and 0 deletions
25
home/profiles/suites/console-tools.nix
Normal file
25
home/profiles/suites/console-tools.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
{ osConfig, lib, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
inherit (builtins) elem;
|
||||||
|
profiles = osConfig.ooknet.host.profiles;
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
config = mkIf (elem "console-tools" profiles) {
|
||||||
|
ooknet.tools = {
|
||||||
|
btop.enable = true;
|
||||||
|
eza.enable = true;
|
||||||
|
bat.enable = true;
|
||||||
|
direnv.enable = true;
|
||||||
|
fzf.enable = true;
|
||||||
|
git.enable = true;
|
||||||
|
ssh.enable = true;
|
||||||
|
nixIndex.enable = true;
|
||||||
|
starship.enable = true;
|
||||||
|
utils.enable = true;
|
||||||
|
ffmpeg.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue