- 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.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{lib, ...}: {
|
|
programs.noctalia-shell = lib.mkForce {
|
|
plugins = {
|
|
sources = [
|
|
{
|
|
enabled = true;
|
|
name = "Noctalia Plugins";
|
|
url = "https://github.com/noctalia-dev/noctalia-plugins";
|
|
}
|
|
];
|
|
states = {
|
|
mini-docker = {
|
|
enabled = true;
|
|
sourceUrl = "https://github.com/noctalia-dev/noctalia-plugins";
|
|
};
|
|
timer = {
|
|
enabled = true;
|
|
sourceUrl = "https://github.com/noctalia-dev/noctalia-plugins";
|
|
};
|
|
keybind-cheatsheet = {
|
|
enabled = true;
|
|
sourceUrl = "https://github.com/noctalia-dev/noctalia-plugins";
|
|
};
|
|
};
|
|
version = 1;
|
|
};
|
|
pluginSettings = {
|
|
mini-docker.refreshInterval = 5000;
|
|
timer.compactMode = true;
|
|
keybind-cheatsheet = {
|
|
niriConfigPath = "~/.config/niri/config.kdl";
|
|
hyprlandConfigPath = "~/.config/hypr/hyprland.conf";
|
|
modKeyVariable = "SUPER";
|
|
windowHeight = 850;
|
|
windowWidth = 1100;
|
|
columnCount = 2;
|
|
autoHeight = true;
|
|
};
|
|
};
|
|
};
|
|
}
|