Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6bddbdfcba | |||
| aed95eb6c3 | |||
| b365d28181 |
3 changed files with 17 additions and 1 deletions
|
|
@ -25,6 +25,20 @@ in
|
|||
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 ++ [
|
||||
inputs.emacs-overlay.overlays.default
|
||||
];
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@
|
|||
zstd.dev
|
||||
zstd.out
|
||||
|
||||
godot
|
||||
|
||||
devenv
|
||||
|
||||
racket
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit ae7e236072bcc0fc7d7bd3ca58bc0ad5cff0fdd2
|
||||
Subproject commit 2c8225b986dfd503cc3e5ce82d8105ccd2a57131
|
||||
Loading…
Reference in a new issue