mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
[SUMIREKO] Make sumireko bearable.
This commit is contained in:
parent
2be79777a5
commit
d2d403fef8
20 changed files with 359 additions and 67 deletions
|
|
@ -79,14 +79,18 @@
|
|||
builder =
|
||||
{
|
||||
nixos = let
|
||||
lib = inputs.nixpkgs.lib.extend (self: super: import (inputs.arcexprs + "/lib") {
|
||||
inherit super;
|
||||
lib = self;
|
||||
isOverlayLib = true;
|
||||
});
|
||||
in args: lib.nixosSystem ({
|
||||
inherit lib;
|
||||
} // args);
|
||||
lib = inputs.nixpkgs.lib.extend (self: super:
|
||||
import (inputs.arcexprs + "/lib") {
|
||||
inherit super;
|
||||
lib = self;
|
||||
isOverlayLib = true;
|
||||
});
|
||||
in
|
||||
args:
|
||||
lib.nixosSystem ({
|
||||
inherit lib;
|
||||
}
|
||||
// args);
|
||||
darwin = inputs.darwin.lib.darwinSystem;
|
||||
macos = inputs.darwin.lib.darwinSystem;
|
||||
}
|
||||
|
|
@ -95,6 +99,7 @@
|
|||
{
|
||||
inherit machine;
|
||||
systemType = config.folder;
|
||||
system = config.system;
|
||||
}
|
||||
// defaultSpecialArgs;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue