mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02: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;
|
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 { };
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue