Files
nixos-config/home/system/ashell/default.nix
2025-11-28 01:41:57 +01:00

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;
};
}