Followed quarto patched variable style for other packages.
This commit is contained in:
parent
5d52b63f63
commit
8852d10f6d
18
packages.nix
18
packages.nix
|
|
@ -29,6 +29,14 @@
|
||||||
--replace-fail "syntax-highlighting" "highlight-style"
|
--replace-fail "syntax-highlighting" "highlight-style"
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
patchedPicoSdk = (pkgs.pico-sdk.override {
|
||||||
|
withSubmodules = true;
|
||||||
|
});
|
||||||
|
patchedElementDesktop = (pkgs.element-desktop.overrideAttrs (oldAttrs: {
|
||||||
|
desktopItems = [
|
||||||
|
((builtins.elemAt oldAttrs.desktopItems 0).override { startupWMClass = "element"; })
|
||||||
|
];
|
||||||
|
}));
|
||||||
in with pkgs; [
|
in with pkgs; [
|
||||||
# System
|
# System
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
|
|
@ -52,9 +60,7 @@
|
||||||
scrcpy
|
scrcpy
|
||||||
android-tools
|
android-tools
|
||||||
kicad
|
kicad
|
||||||
(pico-sdk.override {
|
patchedPicoSdk
|
||||||
withSubmodules = true;
|
|
||||||
})
|
|
||||||
picotool
|
picotool
|
||||||
gnumake
|
gnumake
|
||||||
cmake
|
cmake
|
||||||
|
|
@ -72,11 +78,7 @@
|
||||||
|
|
||||||
|
|
||||||
# Communication
|
# Communication
|
||||||
(element-desktop.overrideAttrs (oldAttrs: {
|
patchedElementDesktop
|
||||||
desktopItems = [
|
|
||||||
((builtins.elemAt oldAttrs.desktopItems 0).override { startupWMClass = "element"; })
|
|
||||||
];
|
|
||||||
}))
|
|
||||||
discord
|
discord
|
||||||
|
|
||||||
# Music
|
# Music
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue