summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-08-08 11:41:00 +0200
committersils <sils@sils.li>2023-08-08 11:41:00 +0200
commit911a6090a5a73e6080b00ffa69650781061978aa (patch)
tree965884290eaca0aaa9df71a5a1043c66f26ceefe
parentFeat(u/sils/packages): Add hyfetch (diff)
downloadnix-config-911a6090a5a73e6080b00ffa69650781061978aa.tar.gz
nix-config-911a6090a5a73e6080b00ffa69650781061978aa.zip
Feat(u/sils): Add hyfetch config
-rw-r--r--users/sils/default.nix1
-rw-r--r--users/sils/hyfetch/default.nix19
2 files changed, 20 insertions, 0 deletions
diff --git a/users/sils/default.nix b/users/sils/default.nix
index 0678ecb..613e557 100644
--- a/users/sils/default.nix
+++ b/users/sils/default.nix
@@ -4,6 +4,7 @@
     ./git
     ./gpg
     #./grades
+		./hyfetch
     ./mako
     ./nixneovim
     ./packages
diff --git a/users/sils/hyfetch/default.nix b/users/sils/hyfetch/default.nix
new file mode 100644
index 0000000..596b26d
--- /dev/null
+++ b/users/sils/hyfetch/default.nix
@@ -0,0 +1,19 @@
+{...}: {
+  programs.hyfetch = {
+    enable = true;
+    settings = {
+      preset = "rainbow";
+      mode = "rgb";
+      light_dark = "dark";
+      lightness = 0.5;
+      color_align = {
+        mode = "horizontal";
+        custom_colors = [];
+        fore_back = null;
+      };
+      backend = "neofetch";
+      distro = null;
+      pride_month_shown = [];
+    };
+  };
+}