From cdb974f38ee39f9729ef249db00d791be9593e68 Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Thu, 13 Feb 2025 17:10:37 +0100 Subject: fastfetch: init module --- modules/hm/sils/fastfetch.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/hm/sils/fastfetch.nix (limited to 'modules/hm/sils/fastfetch.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; + }; + }; +} -- cgit v1.3.1