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,
...
} @ 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 {