-fastfetch;+nitch

This commit is contained in:
m3tam3re
2025-04-30 14:47:05 +02:00
parent cc38372ee0
commit 3d52c0576e
9 changed files with 22 additions and 21 deletions

View File

@ -2,7 +2,7 @@
imports = [
./fish.nix
./fzf.nix
./fastfetch.nix
./nitch.nix
./secrets.nix
./starship.nix
./zellij.nix

View File

@ -1,15 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.cli.fastfetch;
in {
options.features.cli.fastfetch.enable = mkEnableOption "enable fastfetch";
config = mkIf cfg.enable {
home.packages = with pkgs; [fastfetch];
};
}

View File

@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.cli.nitch;
in {
options.features.cli.nitch.enable = mkEnableOption "enable nitch";
config = mkIf cfg.enable {
home.packages = with pkgs; [nitch];
};
}