make configuration.nix host agnostic and add nix-conv

This commit is contained in:
2024-12-13 15:57:06 +01:00
parent 2668121c52
commit 00004c69f5
3 changed files with 16 additions and 9 deletions

View File

@@ -31,6 +31,17 @@
./users/shatteredmint.nix
];
};
nix-conv = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
./configuration.nix
./plasma.nix
./users/shatteredmint.nix
];
};
};
};
}