aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/fastfetch.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/fastfetch.nix')
-rw-r--r--modules/hm/sils/fastfetch.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/hm/sils/fastfetch.nix b/modules/hm/sils/fastfetch.nix
deleted file mode 100644
index f3efcab..0000000
--- a/modules/hm/sils/fastfetch.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.fastfetch;
-in {
- options.sils.fastfetch = {
- enable = lib.mkEnableOption "fastfetch";
- };
- config = lib.mkIf cfg.enable {
- programs.fastfetch = {
- enable = true;
- };
- };
-}