no clue really

This commit is contained in:
2025-07-09 11:46:32 -05:00
parent 773eaaf26d
commit ce38e52ee9
21 changed files with 99 additions and 121 deletions

View File

@@ -14,22 +14,23 @@
};
};
outputs = { self, nixpkgs, ... } @ inputs:
let
outputs =
{ self, nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
username = "poslop";
in
in
{
nixosConfigurations = {
nixos-vm2 = nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./hosts/nixos-vm2/configuration.nix ];
specialArgs = {
host = "nixos-vm2";
inherit self inputs username;
nixosConfigurations = {
nixos-vm2 = nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./hosts/nixos-vm2/configuration.nix ];
specialArgs = {
host = "nixos-vm2";
inherit self inputs username;
};
};
};
};
};
}