add fastfetch configuration

This commit is contained in:
Miranda Marquez 2024-06-04 17:23:37 -08:00
parent 85e3097380
commit 6716274996
2 changed files with 39 additions and 11 deletions

View File

@ -94,17 +94,6 @@ with lib.hm.gvariant;
# recursive = true; # recursive = true;
# }; # };
programs.hyfetch = {
enable = true;
settings = {
preset = "nonbinary";
mode = "rgb";
color_align = {
mode = "horizontal";
};
backend = "fastfetch";
};
};
programs.gpg = { programs.gpg = {
enable = true; enable = true;

View File

@ -40,4 +40,43 @@
enable = true; enable = true;
options = [ "--cmd cd" ]; options = [ "--cmd cd" ];
}; };
programs.fastfetch = {
enable = true;
settings.modules = [
"title"
"separator"
"os"
"host"
"kernel"
"uptime"
"packages"
"display"
"de"
"wm"
"cursor"
"terminal"
# "terminalfont"
"cpu"
"gpu"
"memory"
"swap"
"disk"
"localip"
"battery"
# "poweradapter"
"break"
"colors"
];
};
programs.hyfetch = {
enable = true;
settings = {
preset = "nonbinary";
mode = "rgb";
color_align = {
mode = "horizontal";
};
backend = "fastfetch";
};
};
} }