dotnix/modules/home/macchina.nix
2025-03-29 19:05:05 +01:00

50 lines
1.1 KiB
Nix

{ ... }:
{
home.file = {
".config/macchina/macchina.toml".text = ''
interface = "wlan0"
long_uptime = true
long_shell = false
long_kernel = false
current_shell = true
physical_cores = true
theme = "rose-pine"
show = ["Host", "Kernel", "Distribution", "Packages", "Terminal", "Shell", "Processor", "ProcessorLoad", "Memory", "Battery"]
'';
".config/macchina/themes/rose-pine.toml".text = ''
spacing = 2
padding = 0
hide_ascii = true
separator = ""
key_color = "red"
separator_color = "red"
[palette]
type = "Dark"
visible = false
glyph = " "
[box]
title = " Swordfish "
border = "flat"
visible = true
[randomize]
key_color = false
separator_color = false
[keys]
host = " Host"
kernel = " Kernel"
distro = " Distro"
packages = " Packages"
terminal = " Terminal"
shell = " Shell"
cpu = " CPU"
cpu_load = " CPU %"
memory = " Memory %"
battery = "󱊣 Battery %"
'';
};
}