neofetch to fastfetch

This commit is contained in:
m3tam3re
2025-03-01 15:01:19 +01:00
parent 2db7d8c1fd
commit c7fb70c88d
8 changed files with 21 additions and 21 deletions

View File

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

View File

@ -0,0 +1,15 @@
{
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

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