aboutsummaryrefslogtreecommitdiffstats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-09-30 13:17:27 +0200
committerSoispha <soispha@vhack.eu>2023-09-30 13:17:27 +0200
commit77f8641fe8bfff9207a5e2038e53073b5ca5d7d6 (patch)
tree2c04002a3346eba5dabce6f21784cb2a01cf9033 /hm
parentfeat(hm/conf/taskwarrior): Init (diff)
downloadnixos-config-77f8641fe8bfff9207a5e2038e53073b5ca5d7d6.zip
feat(hm/conf/hyfetch): Init
Diffstat (limited to 'hm')
-rw-r--r--hm/soispha/conf/default.nix1
-rw-r--r--hm/soispha/conf/hyfetch/default.nix20
2 files changed, 21 insertions, 0 deletions
diff --git a/hm/soispha/conf/default.nix b/hm/soispha/conf/default.nix
index 18ec5e2e..07093260 100644
--- a/hm/soispha/conf/default.nix
+++ b/hm/soispha/conf/default.nix
@@ -11,6 +11,7 @@
./grades
./gtk
./himalaya
+ ./hyfetch
./iamb
./keepassxc
./latexindent
diff --git a/hm/soispha/conf/hyfetch/default.nix b/hm/soispha/conf/hyfetch/default.nix
new file mode 100644
index 00000000..aec21dbc
--- /dev/null
+++ b/hm/soispha/conf/hyfetch/default.nix
@@ -0,0 +1,20 @@
+{...}: {
+ programs.hyfetch = {
+ enable = true;
+ settings = {
+ preset = "rainbow";
+ mode = "rgb";
+ light_dark = "dark";
+ lightness = 0.65;
+ color_align = {
+ mode = "horizontal";
+ custom_colors = [];
+ fore_back = null;
+ };
+ backend = "neofetch";
+ distro = null;
+ pride_month_shown = [];
+ pride_month_disable = false;
+ };
+ };
+}