aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/fastfetch.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/hm/sils/fastfetch.nix16
1 files changed, 16 insertions, 0 deletions
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;
+ };
+ };
+}