24 lines
462 B
Nix
24 lines
462 B
Nix
{...}: {
|
|
imports = [../../home/personal.nix];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
|
|
programs.waybar.settings.main = {
|
|
"modules-left" = ["wlr/workspaces"];
|
|
"modules-center" = ["clock"];
|
|
"modules-right" = [
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
"pulseaudio"
|
|
"bluetooth"
|
|
"network"
|
|
"backlight"
|
|
"battery"
|
|
"battery#bat2"
|
|
"tray"
|
|
];
|
|
};
|
|
}
|