fixed infinite recursion?
This commit is contained in:
parent
22caf58184
commit
097bd10bd4
12
flake.nix
12
flake.nix
|
@ -35,10 +35,10 @@
|
|||
nixpkgs,
|
||||
...
|
||||
} @ inputs: let
|
||||
lib = import ./lib {
|
||||
inherit nixpkgs;
|
||||
inherit self;
|
||||
};
|
||||
# lib = import ./lib {
|
||||
# inherit nixpkgs;
|
||||
# inherit self;
|
||||
# };
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
in {
|
||||
|
@ -54,7 +54,7 @@
|
|||
];
|
||||
in {
|
||||
server-vm = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs lib;};
|
||||
specialArgs = {inherit inputs;};
|
||||
modules =
|
||||
[
|
||||
(import ./disko.nix {
|
||||
|
@ -75,7 +75,7 @@
|
|||
};
|
||||
|
||||
server = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs lib;};
|
||||
specialArgs = {inherit inputs;};
|
||||
modules =
|
||||
[
|
||||
(import ./disko.nix {
|
||||
|
|
Loading…
Reference in a new issue