Compare commits

...

3 commits

Author SHA1 Message Date
6bddbdfcba Required updates for newer version of beets 2026-01-25 08:56:28 -06:00
aed95eb6c3 godot 2026-01-25 08:56:28 -06:00
b365d28181 Make dolphin usable 2026-01-25 08:56:28 -06:00
3 changed files with 17 additions and 1 deletions

View file

@ -25,6 +25,20 @@ in
config.allowUnfree = true; config.allowUnfree = true;
}; };
}) })
# https://discourse.nixos.org/t/dolphin-does-not-have-mime-associations/48985/14
# https://github.com/rumboon/dolphin-overlay/blob/main/default.nix
(final: prev: {
kdePackages = prev.kdePackages.overrideScope (kfinal: kprev: {
dolphin = kprev.dolphin.overrideAttrs (oldAttrs: {
nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ prev.makeWrapper ];
postInstall = (oldAttrs.postInstall or "") + ''
wrapProgram $out/bin/dolphin \
--set XDG_CONFIG_DIRS "${prev.libsForQt5.kservice}/etc/xdg:$XDG_CONFIG_DIRS" \
--run "${kprev.kservice}/bin/kbuildsycoca6 --noincremental ${prev.libsForQt5.kservice}/etc/xdg/menus/applications.menu"
'';
});
});
})
] ++ import ./overlays.nix inputs ++ [ ] ++ import ./overlays.nix inputs ++ [
inputs.emacs-overlay.overlays.default inputs.emacs-overlay.overlays.default
]; ];

View file

@ -12,6 +12,8 @@
zstd.dev zstd.dev
zstd.out zstd.out
godot
devenv devenv
racket racket

@ -1 +1 @@
Subproject commit ae7e236072bcc0fc7d7bd3ca58bc0ad5cff0fdd2 Subproject commit 2c8225b986dfd503cc3e5ce82d8105ccd2a57131