- Remove unused `pkgs` import from hardware and adjust user stateVersion to 25.11 with updated wheel comment. - Split Bash aliases and functions into separate modules and rename `bash.nix` to `bash/default.nix` with imports. - Delete old Bash alias/function files and consolidate them under the new structure. - Simplify `bat.nix` by removing commented style lines. - Increase Cava `frame_rate` from 60 to 144 and clean up legacy color settings. - Refactor Chromium configuration: separate extensions into `extensions.nix` and use a minimal default module. - Replace large Kitty config with minimal enable/module and import `extra-config.nix` and `settings.nix`. - Overhaul Librewolf setup: extract profiles, extensions, search, and settings into dedicated files. - Update home `default.nix` imports to reflect new module paths and remove obsolete references. - Modularize SwayNC by moving settings and style to separate files. - Add explicit Vesktop package definition. - Remove old VSCode module; introduce VSCodium with profile-based extensions, keybindings, and user settings. - Reorganize XDG portal and desktop entries into modular files. - Rebuild Zed configuration: split user settings, language models, languages, LSP, extensions, and extra packages into distinct files.
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
_: {
|
|
services.swaync.settings = {
|
|
positionX = "right";
|
|
positionY = "top";
|
|
layer = "overlay";
|
|
control-center-margin-top = 10;
|
|
control-center-margin-bottom = 10;
|
|
control-center-margin-right = 10;
|
|
control-center-margin-left = 10;
|
|
notification-icon-size = 64;
|
|
notification-body-image-height = 100;
|
|
notification-body-image-width = 200;
|
|
timeout = 10;
|
|
timeout-low = 5;
|
|
timeout-critical = 0;
|
|
fit-to-screen = false;
|
|
control-center-width = 500;
|
|
control-center-height = 1025;
|
|
notification-window-width = 500;
|
|
keyboard-shortcuts = true;
|
|
image-visibility = "when-available";
|
|
transition-time = 200;
|
|
hide-on-clear = false;
|
|
hide-on-action = true;
|
|
script-fail-notify = true;
|
|
widget-config = {
|
|
title = {
|
|
text = "Notification Center";
|
|
clear-all-button = true;
|
|
button-text = " Clear All";
|
|
};
|
|
dnd = {
|
|
text = "Do Not Disturb";
|
|
};
|
|
label = {
|
|
max-lines = 1;
|
|
text = "Notification Center";
|
|
};
|
|
mpris = {
|
|
image-size = 96;
|
|
image-radius = 7;
|
|
};
|
|
volume = {
|
|
label = "";
|
|
};
|
|
backlight = {
|
|
label = "";
|
|
};
|
|
};
|
|
widgets = [
|
|
"title"
|
|
"mpris"
|
|
"volume"
|
|
"backlight"
|
|
"dnd"
|
|
"notifications"
|
|
];
|
|
};
|
|
}
|