This commit is contained in:
2025-12-01 11:43:29 +01:00
parent 1e70a6407d
commit 040f9566df
6 changed files with 18 additions and 18 deletions

View File

@@ -23,7 +23,12 @@
pkgs, pkgs,
system, system,
... ...
}: let }: {
# Per-system attributes can be defined here. The self' and inputs'
# module parameters provide easy access to attributes of the same
# system.
packages = let
mkTask = part: mkTask = part:
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {
name = "a1-${part}"; name = "a1-${part}";
@@ -40,11 +45,6 @@
}; };
}; };
in { in {
# Per-system attributes can be defined here. The self' and inputs'
# module parameters provide easy access to attributes of the same
# system.
packages = {
a = mkTask "a"; a = mkTask "a";
b = mkTask "b"; b = mkTask "b";
c = mkTask "c"; c = mkTask "c";