38 lines
521 B
Nix
38 lines
521 B
Nix
{pkgs, ...}:
|
|
|
|
{
|
|
programs.ashell = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
app_launcher_cmd = "rofi -show drun";
|
|
modules = {
|
|
left = [
|
|
"Workspaces"
|
|
];
|
|
center = [
|
|
"MediaPlayer"
|
|
];
|
|
right = [
|
|
"SystemInfo"
|
|
[
|
|
"Settings"
|
|
"Clock"
|
|
"Privacy"
|
|
"Tray"
|
|
]
|
|
];
|
|
};
|
|
workspaces = {
|
|
visibility_mode = "MonitorSpecific";
|
|
};
|
|
};
|
|
settings = {
|
|
remove_airplane_btn = true;
|
|
appearance = {
|
|
style = "Solid";
|
|
};
|
|
};
|
|
};
|
|
}
|