fixed infinite recursion?

This commit is contained in:
Snorre 2025-03-04 13:57:11 +01:00
parent 22caf58184
commit 097bd10bd4

View file

@ -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 {