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

View file

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