chore: flake update + optimizations

This commit is contained in:
2026-03-29 13:33:22 +02:00
parent 45626c5af4
commit 2d4efa5d23
11 changed files with 138 additions and 96 deletions

View File

@@ -3,7 +3,7 @@
additions = final: prev:
(import ../pkgs {pkgs = final;})
// {
zugferd-service = inputs.zugferd-service.packages.${prev.system}.default;
zugferd-service = inputs.zugferd-service.packages.${prev.stdenv.hostPlatform.system}.default;
};
# This one contains whatever you want to overlay
@@ -21,13 +21,13 @@
stable-packages = final: _prev: {
stable = import inputs.nixpkgs {
system = final.system;
system = final.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
};
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
system = final.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
};