Fixed stupidity

This commit is contained in:
Julien Malka 2023-01-08 22:33:35 +01:00
parent c26a0c4826
commit af8e203f56
Signed by: Luj
GPG key ID: 6FC74C847011FD83
2 changed files with 10 additions and 5 deletions

View file

@ -3,8 +3,8 @@ inputs: final: prev:
with builtins; with inputs;
let
overlay-unstable = final: prev: {
unstable = unstable.legacyPackages.x86_64-linux;
overlay-unstable = arch: final: prev: {
unstable = unstable.legacyPackages."${arch}";
};
in
{
@ -24,7 +24,7 @@ in
{
home-manager.useGlobalPkgs = true;
nixpkgs.overlays = [
overlay-unstable
(overlay-unstable system)
(final: prev:
{
tinystatus = prev.pkgs.callPackage ../packages/tinystatus { };

View file

@ -14,7 +14,7 @@ lib: with lib; let
};
};
}));
default = {};
default = { };
};
config = {
@ -36,9 +36,14 @@ lib: with lib; let
lambda = {
arch = "aarch64-linux";
};
tower = {
arch = "x86_64-linux";
};
};
};
}
];
in (evalModules { inherit modules; }).config
in
(evalModules { inherit modules; }).config