Add bitwarden-cli, xdg-utils and gcc to essentials. Configure the noctalia Bitwarden plugin with custom server and generation options. Enable the keybind‑cheatsheet plugin and bind it to Super+Shift+K. Replace several widget displays with gauge visualizations and add a keybinds widget to the bar. Remove obsolete Bitwarden desktop toggles from host modules.
20 lines
387 B
Nix
20 lines
387 B
Nix
_: {
|
|
programs.noctalia.settings.plugins = {
|
|
enabled = [
|
|
"noctalia/bitwarden"
|
|
"oldirtty/color_picker"
|
|
"nightwatch75/file-search"
|
|
"kenn/keybind-cheatsheet"
|
|
"avivbintangaringga/nix-monitor"
|
|
"noctalia/screen_recorder"
|
|
];
|
|
};
|
|
|
|
imports = [
|
|
./bitwarden.nix
|
|
./keybind-cheatsheet.nix
|
|
./screen-recorder.nix
|
|
./nix-monitor.nix
|
|
];
|
|
}
|