- Pin newer revisions for firefox‑addons, home‑manager, nixpkgs, noctalia‑shell and stylix. - Enable Evolution in programs. - Use Plex desktop override with QT_QPA_PLATFORM and comment out the plain version. - Comment out settings.settingsVersion in noctalia config. - Reduce plugin window width to 1100 and add columnCount = 2.
22 lines
347 B
Nix
22 lines
347 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
system,
|
|
...
|
|
}: {
|
|
programs.noctalia-shell = {
|
|
enable = true;
|
|
package = inputs.noctalia.packages.${system}.default.override {
|
|
calendarSupport = true;
|
|
};
|
|
systemd.enable = true;
|
|
# settings.settingsVersion = lib.mkForce 46;
|
|
};
|
|
|
|
imports = [
|
|
./settings
|
|
./colors.nix
|
|
./plugins.nix
|
|
];
|
|
}
|