init
This commit is contained in:
commit
f89801cd39
418 changed files with 1855 additions and 0 deletions
17
Modules/Applications/Shell/cli-tools/default.nix
Normal file
17
Modules/Applications/Shell/cli-tools/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
options.cliTools.enable = lib.mkEnableOption "Enable CLI tools like fastfetch and hyfetch";
|
||||
|
||||
config = lib.mkIf config.cliTools.enable {
|
||||
home.packages = with pkgs; [
|
||||
fastfetch
|
||||
hyfetch
|
||||
bat
|
||||
fzf
|
||||
tree
|
||||
lsd
|
||||
tmux
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue