- 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.
25 lines
439 B
Nix
25 lines
439 B
Nix
_: {
|
|
programs = {
|
|
nano.enable = true;
|
|
hyprland = {
|
|
enable = true;
|
|
withUWSM = false;
|
|
};
|
|
dconf.enable = true;
|
|
seahorse.enable = true;
|
|
fuse.userAllowOther = true;
|
|
mtr.enable = true;
|
|
gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
nix-ld = {
|
|
enable = true;
|
|
# libraries = with pkgs; [
|
|
# biome
|
|
# ];
|
|
};
|
|
evolution.enable = true;
|
|
};
|
|
}
|