This commit is contained in:
Lucy von Overheidt 2025-09-09 19:50:59 +02:00
parent 9deeeaabce
commit 4348bef5ac
4 changed files with 37 additions and 2 deletions

View file

@ -31,7 +31,7 @@
*/
font = {
normal = {
family = lib.mkDefault "Iosevka";
family = lib.mkForce "Iosevka";
style = "Regular";
};
bold = {

View file

@ -14,6 +14,7 @@
./gammastep.nix
./hypridle.nix
./fuzzel.nix
./hyfetch.nix
];
# TODO please change the username & home directory to your own
@ -53,7 +54,6 @@
aerc
hyfetch
nnn # terminal file manager
prismlauncher

20
modules/hyfetch.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
auto_detect_light_dark = true;
light_dark = "dark";
lightness = 0.65;
color_align = {
mode = "horizontal";
};
backend = "neofetch";
args = null;
distro = null;
pride_month_disable = false;
};
};
}