-fastfetch;+nitch
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
imports = [
|
||||
./fish.nix
|
||||
./fzf.nix
|
||||
./fastfetch.nix
|
||||
./nitch.nix
|
||||
./secrets.nix
|
||||
./starship.nix
|
||||
./zellij.nix
|
||||
|
@ -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];
|
||||
};
|
||||
}
|
15
home/features/cli/nitch.nix
Normal file
15
home/features/cli/nitch.nix
Normal 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];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user