Fixing all warnings

This commit is contained in:
Lyes Saadi 2026-03-06 20:34:14 +01:00
parent 32720ae712
commit 169912a47b
Signed by: lyes
GPG key ID: 55A1D803917CF39A
15 changed files with 124 additions and 92 deletions

View file

@ -16,21 +16,21 @@
# Unstable
(final: prev: {
unstable = import nixpkgs-unstable {
system = prev.system;
system = final.stdenv.hostPlatform.system;
};
})
# Stable
(final: prev: {
stable = import nixpkgs-stable {
system = prev.system;
system = final.stdenv.hostPlatform.system;
};
})
# Pins
(final: prev: {
pin = {
factorio = import pin-factorio { system = prev.system; config.allowUnfree = true; };
factorio = import pin-factorio { system = final.stdenv.hostPlatform.system; config.allowUnfree = true; };
};
})
];