From 94b293acbb01ac335a9b12d0a9ef087e48d400cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Mon, 24 Feb 2025 23:08:34 +0100 Subject: [PATCH] modules/system/incus: initialize default profile --- modules/system/incus.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/modules/system/incus.nix b/modules/system/incus.nix index 4313573..b46ab37 100644 --- a/modules/system/incus.nix +++ b/modules/system/incus.nix @@ -49,6 +49,23 @@ let }; } ]; + profiles = [ + { + devices = { + eth0 = { + name = "eth0"; + network = "incusbr0"; + type = "nic"; + }; + root = { + path = "/"; + pool = "default"; + type = "disk"; + }; + }; + name = "default"; + } + ]; }; }; networking = {