added fastfetch

This commit is contained in:
biscuit
2025-05-19 20:52:42 -05:00
parent c62421cfb6
commit dd3caf07d2
2 changed files with 37 additions and 5 deletions
+33 -1
View File
@@ -1,3 +1,35 @@
{...}: {
programs.fastfetch.enable = true;
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "nixos_small";
padding = {
right = 1;
};
};
display = {
size = {
binaryPrefix = "si";
};
color = "blue";
separator = " ";
};
modules = [
{
type = "datetime";
key = "Date";
format = "{1}-{3}-{11}";
}
{
type = "datetime";
key = "Time";
format = "{14}:{17}:{20}";
}
"break"
"player"
"media"
];
};
};
}