mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
move stuff around
This commit is contained in:
62
modules/cli/fastfetch.nix
Normal file
62
modules/cli/fastfetch.nix
Normal file
@@ -0,0 +1,62 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
modules = [
|
||||
"title"
|
||||
"separator"
|
||||
"os"
|
||||
"host"
|
||||
"kernel"
|
||||
"packages"
|
||||
"separator"
|
||||
"wm"
|
||||
"shell"
|
||||
"terminal"
|
||||
"theme"
|
||||
"font"
|
||||
"locale"
|
||||
"separator"
|
||||
"display"
|
||||
"cpu"
|
||||
"gpu"
|
||||
"memory"
|
||||
"disk"
|
||||
"battery"
|
||||
"separator"
|
||||
"wifi"
|
||||
"localip"
|
||||
"break"
|
||||
"colors"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
xdg.configFile."fastfetch/startup.jsonc".text = builtins.toJSON {
|
||||
logo = {
|
||||
source = "arch_small";
|
||||
padding = {
|
||||
bottom = 1;
|
||||
};
|
||||
};
|
||||
display = {
|
||||
separator = " ➜ ";
|
||||
};
|
||||
modules = [
|
||||
"title"
|
||||
"kernel"
|
||||
"packages"
|
||||
"shell"
|
||||
"battery"
|
||||
{
|
||||
type = "separator";
|
||||
string = " • ";
|
||||
}
|
||||
"break"
|
||||
"break"
|
||||
"break"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user