
- Remove duplicate sma user definition from incus.nix module - The sma user is properly defined in modules/users/sma.nix with incus-admin group - This resolves the isNormalUser/isSystemUser assertion failure blocking congenital-optimist rebuild - Clean up grey-area configuration and modularize services - Update SSH keys with correct IP addresses for grey-area and reverse-proxy
15 lines
247 B
Nix
15 lines
247 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
virtualisation.incus = {
|
|
enable = true;
|
|
ui.enable = true;
|
|
package = pkgs.incus;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
incus
|
|
lxc
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8443 ];
|
|
}
|