🐛 nix flake update fixes

This commit is contained in:
Ingolf Wagner 2025-04-16 21:42:48 +02:00
parent 0d91987d59
commit f9256738a4
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
5 changed files with 7 additions and 7 deletions
components
flake.nix
homes/palo/packages
machines/orbi

View file

@ -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";

View file

@ -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

View file

@ -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

View file

@ -12,7 +12,7 @@ with lib;
programs.obs-studio.enable = false;
home.packages = [
emoji-picker
signal-desktop
signal-desktop-bin
];
};

View file

@ -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;
};
};