diff options
Diffstat (limited to 'modules/hm')
-rw-r--r-- | modules/hm/sils/default.nix | 1 | ||||
-rw-r--r-- | modules/hm/sils/fastfetch.nix | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix index 41b192b..02ddbd3 100644 --- a/modules/hm/sils/default.nix +++ b/modules/hm/sils/default.nix @@ -4,6 +4,7 @@ ./direnv.nix ./etesync-dav.nix ./fd.nix + ./fastfetch.nix ./firefox ./foot.nix ./git.nix diff --git a/modules/hm/sils/fastfetch.nix b/modules/hm/sils/fastfetch.nix new file mode 100644 index 0000000..f3efcab --- /dev/null +++ b/modules/hm/sils/fastfetch.nix @@ -0,0 +1,16 @@ +{ + config, + lib, + ... +}: let + cfg = config.sils.fastfetch; +in { + options.sils.fastfetch = { + enable = lib.mkEnableOption "fastfetch"; + }; + config = lib.mkIf cfg.enable { + programs.fastfetch = { + enable = true; + }; + }; +} |