Revert "24.05 upgrade"

This reverts commit 47588d172a.
This commit is contained in:
2024-06-27 00:23:52 +02:00
parent 47588d172a
commit 41b2206e74
7 changed files with 57 additions and 57 deletions

View File

@@ -56,7 +56,7 @@
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "24.05"; # Please read the comment before changing.
home.stateVersion = "23.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.

View File

@@ -3,7 +3,7 @@
lib,
fetchurl,
appimageTools,
electron_27,
electron_25,
makeWrapper,
}:
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
install -m 444 -D resources/app.asar $out/libexec/app.asar
install -m 444 -D mqtt-explorer.png $out/share/icons/mqtt-explorer.png
install -m 444 -D mqtt-explorer.desktop $out/share/applications/mqtt-explorer.desktop
makeWrapper ${electron_27}/bin/electron $out/bin/mqtt-explorer --add-flags $out/libexec/app.asar
makeWrapper ${electron_25}/bin/electron $out/bin/mqtt-explorer --add-flags $out/libexec/app.asar
'';
meta = with lib; {
description = "A comprehensive and easy-to-use MQTT Client";
@@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
url = "https://spdx.org/licenses/CC-BY-ND-4.0.html";
};
maintainers = [maintainers.yorickvp];
inherit (electron_27.meta) platforms;
inherit (electron_25.meta) platforms;
};
}

View File

@@ -1,4 +1,4 @@
{config, pkgs, ...}: {
{config, ...}: {
programs.gpg = {
enable = true;
mutableKeys = false;
@@ -14,7 +14,7 @@
enable = true;
enableSshSupport = true;
enableZshIntegration = true;
pinentryPackage = pkgs.pinentry.qt;
pinentryFlavor = "qt";
extraConfig = ''
allow-emacs-pinentry
'';