resolve incus merge conflict
This commit is contained in:
parent
81847253a0
commit
1e29882c46
1 changed files with 79 additions and 21 deletions
|
@ -1,16 +1,73 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.mySystem.system.incus;
|
||||||
|
user = "jahanson";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
sops.secrets.secret-domain-0 = {
|
# sops.secrets.secret-domain-0 = {
|
||||||
sopsFile = ./secret.sops.yaml;
|
# sopsFile = ./secret.sops.yaml;
|
||||||
|
# };
|
||||||
|
options.mySystem.system.incus = {
|
||||||
|
enable = lib.mkEnableOption "incus";
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.jahanson.extraGroups = [ "incus-admin" ];
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
virtualisation.incus = {
|
virtualisation.incus = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ui.enable = true;
|
ui.enable = true;
|
||||||
|
|
||||||
|
preseed = {
|
||||||
|
config = {
|
||||||
|
"core.https_address" = "10.1.1.15:8445"; # Need quotes around key
|
||||||
|
};
|
||||||
|
networks = [
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
"ipv4.address" = "auto"; # Need quotes around key
|
||||||
|
"ipv6.address" = "auto"; # Need quotes around key
|
||||||
|
};
|
||||||
|
description = "";
|
||||||
|
name = "incusbr0";
|
||||||
|
type = "";
|
||||||
|
project = "default";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
storage_pools = [
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
source = "eru/incus";
|
||||||
|
};
|
||||||
|
description = "";
|
||||||
|
name = "default";
|
||||||
|
driver = "zfs";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
profiles = [
|
||||||
|
{
|
||||||
|
config = { };
|
||||||
|
description = "";
|
||||||
|
devices = {
|
||||||
|
eth0 = {
|
||||||
|
name = "eth0";
|
||||||
|
network = "incusbr0";
|
||||||
|
type = "nic";
|
||||||
|
};
|
||||||
|
root = {
|
||||||
|
path = "/";
|
||||||
|
pool = "default";
|
||||||
|
type = "disk";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
name = "default";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
projects = [ ];
|
||||||
|
cluster = null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.${user}.extraGroups = [ "incus-admin" ];
|
||||||
|
|
||||||
# systemd.services.incus-preseed.postStart = "${oidcSetup}";
|
# systemd.services.incus-preseed.postStart = "${oidcSetup}";
|
||||||
|
|
||||||
|
@ -18,7 +75,7 @@
|
||||||
nftables.enable = true;
|
nftables.enable = true;
|
||||||
firewall = {
|
firewall = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
8443
|
8445
|
||||||
53
|
53
|
||||||
67
|
67
|
||||||
];
|
];
|
||||||
|
@ -28,4 +85,5 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue