move some apps to namespace
This commit is contained in:
@@ -2,11 +2,12 @@
|
|||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.actual;
|
cfg = config.${namespace}.services.actual;
|
||||||
dataDir = "/data";
|
dataDir = "/data";
|
||||||
hostAddress = "10.0.1.3";
|
hostAddress = "10.0.1.3";
|
||||||
actualUserId = config.users.users.nix-apps.uid;
|
actualUserId = config.users.users.nix-apps.uid;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.actual = {
|
options.${namespace}.services.actual = {
|
||||||
enable = mkEnableOption "actual service";
|
enable = mkEnableOption "actual service";
|
||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.free-games-claimer;
|
cfg = config.${namespace}.services.free-games-claimer;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.free-games-claimer = {
|
options.${namespace}.services.free-games-claimer = {
|
||||||
enable = mkEnableOption "free-games-claimer docker service";
|
enable = mkEnableOption "free-games-claimer docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.manyfold;
|
cfg = config.${namespace}.services.manyfold;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.manyfold = {
|
options.${namespace}.services.manyfold = {
|
||||||
enable = mkEnableOption "manyfold docker service";
|
enable = mkEnableOption "manyfold docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.mongodb;
|
cfg = config.${namespace}.services.mongodb;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.mongodb = {
|
options.${namespace}.services.mongodb = {
|
||||||
enable = mkEnableOption "mongodb docker service";
|
enable = mkEnableOption "mongodb docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.tdarr;
|
cfg = config.${namespace}.services.tdarr;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.tdarr = {
|
options.${namespace}.services.tdarr = {
|
||||||
enable = mkEnableOption "tdarr docker service";
|
enable = mkEnableOption "tdarr docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.your_spotify;
|
cfg = config.${namespace}.services.your_spotify;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.your_spotify = {
|
options.${namespace}.services.your_spotify = {
|
||||||
enable = mkEnableOption "your_spotify docker service";
|
enable = mkEnableOption "your_spotify docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.arrs;
|
cfg = config.${namespace}.services.arrs;
|
||||||
radarrDataDir = "/var/lib/radarr";
|
radarrDataDir = "/var/lib/radarr";
|
||||||
downloadDir = "/downloads";
|
downloadDir = "/downloads";
|
||||||
incompleteDir = "/downloads-incomplete";
|
incompleteDir = "/downloads-incomplete";
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.arrs = {
|
options.${namespace}.services.arrs = {
|
||||||
enable = mkEnableOption "arrs services";
|
enable = mkEnableOption "arrs services";
|
||||||
|
|
||||||
radarr = {
|
radarr = {
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.crowdsec;
|
cfg = config.${namespace}.services.crowdsec;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.crowdsec = {
|
options.${namespace}.services.crowdsec = {
|
||||||
enable = mkEnableOption "crowdsec service";
|
enable = mkEnableOption "crowdsec service";
|
||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ in
|
|||||||
main = {
|
main = {
|
||||||
device = rootDisk;
|
device = rootDisk;
|
||||||
type = "disk";
|
type = "disk";
|
||||||
imageSize = "15G";
|
imageSize = "32G";
|
||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
@@ -108,23 +108,26 @@ in
|
|||||||
"--compression=zstd"
|
"--compression=zstd"
|
||||||
];
|
];
|
||||||
subvolumes = {
|
subvolumes = {
|
||||||
"/root" = {
|
"subvolumes/root" = {
|
||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
|
mountOptions = [
|
||||||
|
"verbose"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
"/persistent" = {
|
"subvolumes/persistent" = {
|
||||||
mountpoint = "/persistent";
|
mountpoint = "/persistent";
|
||||||
};
|
};
|
||||||
"/nix" = {
|
"subvolumes/nix" = {
|
||||||
mountOptions = [
|
mountOptions = [
|
||||||
"noatime"
|
"noatime"
|
||||||
];
|
];
|
||||||
mountpoint = "/nix";
|
mountpoint = "/nix";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
mountpoint = "/partition-root";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} (lib.mkIf (cfg.filesystem == "btrfs") {
|
}
|
||||||
|
(lib.mkIf (cfg.filesystem == "btrfs") {
|
||||||
nodev."/" = {
|
nodev."/" = {
|
||||||
fsType = "tmpfs";
|
fsType = "tmpfs";
|
||||||
mountOptions = [
|
mountOptions = [
|
||||||
@@ -133,6 +136,7 @@ in
|
|||||||
"size=25%"
|
"size=25%"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})];
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ config, lib, ... }:
|
{ config, lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.gitea;
|
cfg = config.${namespace}.services.gitea;
|
||||||
hostAddress = "10.0.1.3";
|
hostAddress = "10.0.1.3";
|
||||||
# localAddress = "10.0.4.18";
|
# localAddress = "10.0.4.18";
|
||||||
# httpPort = 3000;
|
# httpPort = 3000;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.gitea = {
|
options.${namespace}.services.gitea = {
|
||||||
enable = mkEnableOption "gitea service";
|
enable = mkEnableOption "gitea service";
|
||||||
|
|
||||||
httpPort = mkOption {
|
httpPort = mkOption {
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.mjallen.impermanence;
|
cfg = config.${namespace}.impermanence;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
@@ -107,14 +108,14 @@ in
|
|||||||
config.fileSystems."/".fsType == "btrfs" || config.fileSystems."/".fsType == "bcachefs" || config.fileSystems."/".fsType == "tmpfs"
|
config.fileSystems."/".fsType == "btrfs" || config.fileSystems."/".fsType == "bcachefs" || config.fileSystems."/".fsType == "tmpfs"
|
||||||
else
|
else
|
||||||
false;
|
false;
|
||||||
message = "rootfs must be btrfs, bcachefs, or tmpfs";
|
message = "rootfs must be btrfs, bcachefs, or tmpfs; not " + config.fileSystems."/".fsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
assertion =
|
assertion =
|
||||||
if hasAttr "/" config.fileSystems && (config.fileSystems."/".fsType == "btrfs" || config.fileSystems."/".fsType == "bcachefs") then
|
if hasAttr "/" config.fileSystems && (config.fileSystems."/".fsType == "btrfs" || config.fileSystems."/".fsType == "bcachefs") then
|
||||||
any (
|
any (
|
||||||
t: t == "subvol=root" || t == "subvol=/root" || t == "X-mount.subdir=root"
|
t: t == "subvol=root" || t == "subvol=/root" || t == "X-mount.subdir=subvolumes/root"
|
||||||
) config.fileSystems."/".options
|
) config.fileSystems."/".options
|
||||||
else
|
else
|
||||||
true;
|
true;
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
namespace,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.nas-apps.orca-slicer;
|
cfg = config.${namespace}.services.orca-slicer;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [ ./options.nix ];
|
imports = [ ./options.nix ];
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ lib, ... }:
|
{ lib, namespace, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
options.nas-apps.orca-slicer = {
|
options.${namespace}.services.orca-slicer = {
|
||||||
enable = mkEnableOption "orca slicer docker service";
|
enable = mkEnableOption "orca slicer docker service";
|
||||||
|
|
||||||
autoStart = mkOption {
|
autoStart = mkOption {
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ in
|
|||||||
${namespace} = {
|
${namespace} = {
|
||||||
hardware.disko.enable = false;
|
hardware.disko.enable = false;
|
||||||
bootloader.lanzaboote.enable = true;
|
bootloader.lanzaboote.enable = true;
|
||||||
|
impermanence.enable = true;
|
||||||
desktop.gnome.enable = true;
|
desktop.gnome.enable = true;
|
||||||
network = {
|
network = {
|
||||||
hostName = "matt-nixos";
|
hostName = "matt-nixos";
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
${namespace} = {
|
${namespace} = {
|
||||||
services = {
|
services = {
|
||||||
|
# Existing properly namespaced services
|
||||||
immich.enable = true;
|
immich.enable = true;
|
||||||
jellyfin.enable = true;
|
jellyfin.enable = true;
|
||||||
jellyseerr.enable = true;
|
jellyseerr.enable = true;
|
||||||
@@ -11,93 +12,92 @@
|
|||||||
paperless.enable = true;
|
paperless.enable = true;
|
||||||
traefik.enable = true;
|
traefik.enable = true;
|
||||||
wyoming.enable = true;
|
wyoming.enable = true;
|
||||||
|
|
||||||
|
# Newly migrated services
|
||||||
|
actual = {
|
||||||
|
enable = true;
|
||||||
|
port = 3333;
|
||||||
|
localAddress = "10.0.3.18";
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/actual";
|
||||||
|
reverseProxy = {
|
||||||
|
enable = true;
|
||||||
|
host = "actual.mjallen.dev";
|
||||||
|
middlewares = [
|
||||||
|
"crowdsec"
|
||||||
|
"whitelist-geoblock"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
arrs = {
|
||||||
|
enable = true;
|
||||||
|
localAddress = "10.0.1.51";
|
||||||
|
downloadsDir = "/media/nas/main/ssd_app_data/downloads";
|
||||||
|
incompleteDownloadsDir = "/media/nas/main/ssd_app_data/downloads-incomplete";
|
||||||
|
moviesDir = "/media/nas/main/movies";
|
||||||
|
tvDir = "/media/nas/main/tv";
|
||||||
|
isosDir = "/media/nas/main/isos";
|
||||||
|
radarr = {
|
||||||
|
enable = true;
|
||||||
|
port = 7878;
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/radarr";
|
||||||
|
};
|
||||||
|
sonarr = {
|
||||||
|
enable = true;
|
||||||
|
port = 8989;
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/sonarr";
|
||||||
|
};
|
||||||
|
sabnzbd = {
|
||||||
|
enable = true;
|
||||||
|
port = 8280;
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/sabnzbd";
|
||||||
|
};
|
||||||
|
deluge = {
|
||||||
|
enable = true;
|
||||||
|
port = 8112;
|
||||||
|
};
|
||||||
|
jackett = {
|
||||||
|
enable = true;
|
||||||
|
port = 9117;
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/jackett";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
crowdsec = {
|
||||||
|
enable = true;
|
||||||
|
port = 9898;
|
||||||
|
apiAddress = "10.0.1.3";
|
||||||
|
apiKey = "1daH89qmJ41r2Lpd9hvDw4sxtOAtBzaj3aKFOFqE";
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/crowdsec";
|
||||||
|
};
|
||||||
|
|
||||||
|
gitea = {
|
||||||
|
enable = true;
|
||||||
|
httpPort = 3000;
|
||||||
|
sshPort = 2222;
|
||||||
|
localAddress = "10.0.4.18";
|
||||||
|
dataDir = "/media/nas/main/nix-app-data/gitea";
|
||||||
|
reverseProxy = {
|
||||||
|
enable = true;
|
||||||
|
host = "gitea.mjallen.dev";
|
||||||
|
middlewares = [
|
||||||
|
"crowdsec"
|
||||||
|
"whitelist-geoblock"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
free-games-claimer.enable = true;
|
||||||
|
|
||||||
|
manyfold.enable = true;
|
||||||
|
|
||||||
|
orca-slicer = {
|
||||||
|
enable = true;
|
||||||
|
httpPort = "3100";
|
||||||
|
httpsPort = "3101";
|
||||||
|
};
|
||||||
|
|
||||||
|
tdarr.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nas-apps = {
|
|
||||||
actual = {
|
|
||||||
enable = true;
|
|
||||||
port = 3333;
|
|
||||||
localAddress = "10.0.3.18";
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/actual";
|
|
||||||
reverseProxy = {
|
|
||||||
enable = true;
|
|
||||||
host = "actual.mjallen.dev";
|
|
||||||
middlewares = [
|
|
||||||
"crowdsec"
|
|
||||||
"whitelist-geoblock"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
arrs = {
|
|
||||||
enable = true;
|
|
||||||
localAddress = "10.0.1.51";
|
|
||||||
downloadsDir = "/media/nas/main/ssd_app_data/downloads";
|
|
||||||
incompleteDownloadsDir = "/media/nas/main/ssd_app_data/downloads-incomplete";
|
|
||||||
moviesDir = "/media/nas/main/movies";
|
|
||||||
tvDir = "/media/nas/main/tv";
|
|
||||||
isosDir = "/media/nas/main/isos";
|
|
||||||
radarr = {
|
|
||||||
enable = true;
|
|
||||||
port = 7878;
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/radarr";
|
|
||||||
};
|
|
||||||
sonarr = {
|
|
||||||
enable = true;
|
|
||||||
port = 8989;
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/sonarr";
|
|
||||||
};
|
|
||||||
sabnzbd = {
|
|
||||||
enable = true;
|
|
||||||
port = 8280;
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/sabnzbd";
|
|
||||||
};
|
|
||||||
deluge = {
|
|
||||||
enable = true;
|
|
||||||
port = 8112;
|
|
||||||
};
|
|
||||||
jackett = {
|
|
||||||
enable = true;
|
|
||||||
port = 9117;
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/jackett";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
crowdsec = {
|
|
||||||
enable = true;
|
|
||||||
port = 9898;
|
|
||||||
apiAddress = "10.0.1.3";
|
|
||||||
apiKey = "1daH89qmJ41r2Lpd9hvDw4sxtOAtBzaj3aKFOFqE";
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/crowdsec";
|
|
||||||
};
|
|
||||||
|
|
||||||
gitea = {
|
|
||||||
enable = true;
|
|
||||||
httpPort = 3000;
|
|
||||||
sshPort = 2222;
|
|
||||||
localAddress = "10.0.4.18";
|
|
||||||
dataDir = "/media/nas/main/nix-app-data/gitea";
|
|
||||||
reverseProxy = {
|
|
||||||
enable = true;
|
|
||||||
host = "gitea.mjallen.dev";
|
|
||||||
middlewares = [
|
|
||||||
"crowdsec"
|
|
||||||
"whitelist-geoblock"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
free-games-claimer.enable = true;
|
|
||||||
|
|
||||||
manyfold.enable = true;
|
|
||||||
|
|
||||||
orca-slicer = {
|
|
||||||
enable = true;
|
|
||||||
httpPort = "3100";
|
|
||||||
httpsPort = "3101";
|
|
||||||
};
|
|
||||||
|
|
||||||
tdarr.enable = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,14 @@
|
|||||||
|
|
||||||
${namespace} = {
|
${namespace} = {
|
||||||
services.home-assistant.enable = true;
|
services.home-assistant.enable = true;
|
||||||
hardware.disko.enable = true;
|
hardware.disko = {
|
||||||
|
enable = true;
|
||||||
|
filesystem = "bcachefs";
|
||||||
|
};
|
||||||
|
impermanence.enable = true;
|
||||||
network = {
|
network = {
|
||||||
hostName = "nuc-nixos";
|
hostName = "nuc-nixos";
|
||||||
useNetworkd = true;
|
useNetworkd = false;
|
||||||
ipv4 = {
|
ipv4 = {
|
||||||
method = "manual";
|
method = "manual";
|
||||||
address = "10.0.1.4/24";
|
address = "10.0.1.4/24";
|
||||||
|
|||||||
Reference in New Issue
Block a user