Add vm config

This commit is contained in:
Fern Garden 2025-07-02 13:36:02 +08:00
parent 4b28169cbe
commit 90906c8209
3 changed files with 97 additions and 1 deletions

View file

@ -34,9 +34,18 @@
lanzaboote.nixosModules.lanzaboote
nixos-hardware.nixosModules.lenovo-thinkpad-t480
./configuration.nix
./configuration/desktop.nix
./hardware-configuration/muskduck.nix # Include the results of the hardware scan.
];
};
nixosConfigurations.vm = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration/vm.nix
./hardware-configuration/vm.nix # Include the results of the hardware scan.
];
};
};
}