22 lines
553 B
Nix
22 lines
553 B
Nix
{...}: {
|
|
imports = [../personal.nix ../desktop/sway.nix];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
|
|
xdg.configFile."sway/config".source = ./sway/config;
|
|
programs.waybar = {
|
|
settings = {
|
|
main = {
|
|
"include" = [
|
|
"~/.config/waybar/modules.json"
|
|
"~/.config/waybar/layout.json"
|
|
];
|
|
"modules-left" = ["sway/workspaces"];
|
|
"modules-center" = ["clock#compact"];
|
|
"modules-right" = ["network" "battery" "tray"];
|
|
};
|
|
};
|
|
};
|
|
}
|