31 lines
452 B
Nix
31 lines
452 B
Nix
{
|
|
programs.ashell = {
|
|
enable = true;
|
|
settings = {
|
|
modules = {
|
|
center = [
|
|
"Window Title"
|
|
];
|
|
|
|
left = [
|
|
"Workspaces"
|
|
];
|
|
|
|
right = [
|
|
"SystemInfo"
|
|
[
|
|
"Clock"
|
|
"Privacy"
|
|
"Settings"
|
|
]
|
|
];
|
|
};
|
|
workspaces = {
|
|
visibilityMode = "MonitorSpecific";
|
|
};
|
|
};
|
|
|
|
systemd.enable = true;
|
|
};
|
|
}
|