diff --git a/components/terminal/wtf.nix b/components/terminal/wtf.nix
index 03550c82..f8989ea7 100644
--- a/components/terminal/wtf.nix
+++ b/components/terminal/wtf.nix
@@ -469,7 +469,7 @@ let
configuration = pkgs.writeText "config.yml" (builtins.toJSON json);
in
pkgs.writers.writeBashBin name ''
- ${pkgs.wtf}/bin/wtfutil --config=${toString configuration}
+ ${pkgs.wtfutil}/bin/wtfutil --config=${toString configuration}
'';
in
@@ -484,7 +484,7 @@ in
services.upower.enable = true;
environment.systemPackages = [
- pkgs.wtf
+ pkgs.wtfutil
(createDashboard {
json = qJson;
name = "q";
diff --git a/components/yubikey.nix b/components/yubikey.nix
index 78855850..722927d3 100644
--- a/components/yubikey.nix
+++ b/components/yubikey.nix
@@ -26,7 +26,6 @@ with lib;
pkgs.yubikey-personalization
pkgs.yubikey-personalization-gui
pkgs.yubikey-manager
- pkgs.yubikey-manager-qt
# for `gpg --export $keyid | hokey lint` to check keys
#pkgs.haskellPackages.hopenpgp-tools
diff --git a/flake.nix b/flake.nix
index e450e9a3..cd6b1851 100644
--- a/flake.nix
+++ b/flake.nix
@@ -264,12 +264,12 @@
documentation.nixos.extraModules = [
./components
./features
- #./modules
- clan-core.nixosModules.clanCore
- telemetry.nixosModules.telemetry
+ ./modules
{
+ # clan fixes
clan.core.settings.directory = ./.; # fixes issues with clanCore https://git.clan.lol/clan/clan-core/issues/1979
}
+ telemetry.nixosModules.telemetry
# inputs.stylix.nixosModules.stylix # fixme: not working
permown.nixosModules.permown
home-manager.nixosModules.home-manager
diff --git a/homes/palo/packages/social.nix b/homes/palo/packages/social.nix
index 8c6945a9..2dcfcbbe 100644
--- a/homes/palo/packages/social.nix
+++ b/homes/palo/packages/social.nix
@@ -12,7 +12,7 @@ with lib;
programs.obs-studio.enable = false;
home.packages = [
emoji-picker
- signal-desktop
+ signal-desktop-bin
];
};
diff --git a/machines/orbi/service-wastebin.nix b/machines/orbi/service-wastebin.nix
index 152a95e7..51853be3 100644
--- a/machines/orbi/service-wastebin.nix
+++ b/machines/orbi/service-wastebin.nix
@@ -15,6 +15,7 @@ in
WASTEBIN_ADDRESS_PORT = "127.0.0.1:${toString port}";
WASTEBIN_TITLE = "paste.ingolf-wagner.de";
WASTEBIN_MAX_PASTE_EXPIRATION = 60 * 60 * 24 * 30;
+ WASTEBIN_MAX_BODY_SIZE = 1024 * 128;
};
};