From 68f9b7b13636fa01d49006dd770ae1fd4940cd49 Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Fri, 4 Jul 2025 21:59:06 +0800 Subject: [PATCH] Add vm-docker --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/flake.nix b/flake.nix index c75d2c8..991fddf 100755 --- a/flake.nix +++ b/flake.nix @@ -54,6 +54,18 @@ ]; }; + nixosConfigurations.vm-docker = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + + modules = [ + { networking.hostName = "docker"; } + + ./configuration/common.nix + ./configuration/vm.nix + ./hardware-configuration/vm-docker.nix # Include the results of the hardware scan. + ]; + }; + nixosConfigurations.lxc-technitium = nixpkgs.lib.nixosSystem { system = "x86_64-linux";