misc support updates~

This commit is contained in:
Kate 2025-04-11 15:32:01 +02:00
parent f2912871de
commit 59d3c1b77f
5 changed files with 22 additions and 2 deletions

View file

@ -101,6 +101,7 @@
(import ./packages) { (import ./packages) {
inherit flake-utils nixpkgs; inherit flake-utils nixpkgs;
deprekages = self.outputs.packages; deprekages = self.outputs.packages;
esp-dev = esp-dev.outputs.packages;
} }
# #

View file

@ -87,6 +87,7 @@ with pkgs;
hexyl hexyl
htop htop
imagemagick imagemagick
inetutils
jq jq
jre jre
jmtpfs jmtpfs
@ -152,7 +153,7 @@ with pkgs;
)) ))
# Reversing. # Reversing.
#binwalk binwalk
# Development. # Development.
colmena colmena

View file

@ -9,5 +9,19 @@
appId = "org.kde.kitinerary-workbench"; appId = "org.kde.kitinerary-workbench";
origin = "kitinerary"; origin = "kitinerary";
} }
]; {
appId = "com.github.vikdevelop.photopea_app";
origin = "flathub";
}
];
services.flatpak.overrides = {
# Try to use Wayland whenever possible.
global = {
Context.sockets = [ "wayland" ];
Environment.ELECTRON_ELECTRON_OZONE_PLATFORM_HINT = "wayland";
};
};
} }

View file

@ -30,6 +30,7 @@ with pkgs;
python3 python3
cfr cfr
procyon procyon
esp-dev.esp-idf-full
# Build systems. # Build systems.
cmake cmake
@ -81,7 +82,6 @@ with pkgs;
if pkgs.stdenv.isDarwin then if pkgs.stdenv.isDarwin then
[ [
esp-dev.esp-idf-full
] ]
else else

View file

@ -5,6 +5,7 @@
flake-utils, flake-utils,
deprekages, deprekages,
nixpkgs, nixpkgs,
esp-dev
}: }:
flake-utils.lib.eachDefaultSystem ( flake-utils.lib.eachDefaultSystem (
@ -112,6 +113,9 @@ flake-utils.lib.eachDefaultSystem (
# plasma # plasma
kde-karousel = callPackage ./kde-karousel.nix { }; kde-karousel = callPackage ./kde-karousel.nix { };
# esp32
esp-env = esp-dev.${system}.esp-idf-full;
# xonsh and xontribs # xonsh and xontribs
xonsh-with-xontribs = pkgs.xonsh.override { xonsh-with-xontribs = pkgs.xonsh.override {
extraPackages = pythonPackages: [ extraPackages = pythonPackages: [