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