aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/hyfetch.nix
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
committerSilas Schöffel <sils@sils.li>2026-06-23 02:56:12 +0200
commit0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1 (patch)
tree978f54918d4cecb5af209f1e0655fc227c6d9987 /modules/hm/sils/hyfetch.nix
parentuser: rename to jaki (diff)
downloadnix-config-0ee989b8473bcdf3f7e4c2bb68217cbaab25cdd1.zip
treewide: rename paths to jaki
Diffstat (limited to 'modules/hm/sils/hyfetch.nix')
-rw-r--r--modules/hm/sils/hyfetch.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/hm/sils/hyfetch.nix b/modules/hm/sils/hyfetch.nix
deleted file mode 100644
index e664e0e..0000000
--- a/modules/hm/sils/hyfetch.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.hyfetch;
-in {
- options.sils.hyfetch = {
- enable = lib.mkEnableOption "hyfetch";
- };
-
- config = lib.mkIf cfg.enable {
- programs.hyfetch = {
- enable = true;
- settings = {
- preset = "nonbinary";
- mode = "rgb";
- light_dark = "dark";
- lightness = 0.5;
- color_align = {
- mode = "horizontal";
- custom_colors = [];
- fore_back = null;
- };
- backend = "fastfetch";
- distro = null;
- pride_month_disable = true;
- };
- };
- };
-}