mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-30 16:00:43 +00:00
Add fastfetch + toggleability
This commit is contained in:
parent
5df0ffe4e5
commit
8b89b321e8
5 changed files with 50 additions and 16 deletions
14
home/programs/terminal/tools/fastfetch.nix
Normal file
14
home/programs/terminal/tools/fastfetch.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
|
||||
cfg = osConfig.myOptions.home-manager.programs.tools.fastfetch;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
programs.fastfetch.enable = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue