mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-27 06:10:53 +01:00
Fixed stupidity
This commit is contained in:
parent
c26a0c4826
commit
af8e203f56
2 changed files with 10 additions and 5 deletions
|
@ -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 { };
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue