From d49f58265f88a61fc186e2e428724b1d6242caa7 Mon Sep 17 00:00:00 2001 From: Fabian Hauser Date: Fri, 21 Mar 2025 19:19:37 +0200 Subject: [PATCH] Move all nixos-modules to options.qois --- nixos-configurations/calanda/networking.nix | 2 +- nixos-configurations/cyprianspitz/networking.nix | 2 +- nixos-configurations/lindberg/networking.nix | 2 +- nixos-configurations/stompert/default.nix | 2 +- nixos-modules/luks-ssh/default.nix | 4 ++-- nixos-modules/router-dhcp/default.nix | 6 +++--- nixos-modules/router-dns/default.nix | 8 ++++---- nixos-modules/router-wireless-ap/default.nix | 6 +++--- nixos-modules/router/default.nix | 6 +++--- nixos-modules/wwan/default.nix | 4 ++-- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/nixos-configurations/calanda/networking.nix b/nixos-configurations/calanda/networking.nix index a96757d..46ac9cd 100644 --- a/nixos-configurations/calanda/networking.nix +++ b/nixos-configurations/calanda/networking.nix @@ -32,7 +32,7 @@ in qois.backplane-net.enable = true; # TODO: Metaize ips - services.qois.router = { + qois.router = { enable = true; wanInterface = "enp4s0"; wirelessInterfaces = [ "wlp5s0" ]; diff --git a/nixos-configurations/cyprianspitz/networking.nix b/nixos-configurations/cyprianspitz/networking.nix index 469c598..0d55ee9 100644 --- a/nixos-configurations/cyprianspitz/networking.nix +++ b/nixos-configurations/cyprianspitz/networking.nix @@ -73,7 +73,7 @@ in }; # Boot - services.qois.luks-ssh = { + qois.luks-ssh = { enable = true; interface = "eth0"; diff --git a/nixos-configurations/lindberg/networking.nix b/nixos-configurations/lindberg/networking.nix index 67f2b0b..fb06bc6 100644 --- a/nixos-configurations/lindberg/networking.nix +++ b/nixos-configurations/lindberg/networking.nix @@ -73,7 +73,7 @@ in # Boot boot.initrd.network.udhcpc.enable = true; - services.qois.luks-ssh = { + qois.luks-ssh = { enable = true; interface = "eth0"; sshPort = 2222; diff --git a/nixos-configurations/stompert/default.nix b/nixos-configurations/stompert/default.nix index 5eea848..e9b7249 100644 --- a/nixos-configurations/stompert/default.nix +++ b/nixos-configurations/stompert/default.nix @@ -35,7 +35,7 @@ # Define on which hard drive you want to install Grub. boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only - services.qois.luks-ssh = { + qois.luks-ssh = { enable = true; interface = "eth1"; sshPort = 2222; diff --git a/nixos-modules/luks-ssh/default.nix b/nixos-modules/luks-ssh/default.nix index 7f11b88..4b15363 100644 --- a/nixos-modules/luks-ssh/default.nix +++ b/nixos-modules/luks-ssh/default.nix @@ -8,10 +8,10 @@ with lib; let - cfg = config.services.qois.luks-ssh; + cfg = config.qois.luks-ssh; in { - options.services.qois.luks-ssh = { + options.qois.luks-ssh = { enable = mkEnableOption "luks-ssh service"; interface = mkOption { diff --git a/nixos-modules/router-dhcp/default.nix b/nixos-modules/router-dhcp/default.nix index 34d3b54..fed5e6b 100644 --- a/nixos-modules/router-dhcp/default.nix +++ b/nixos-modules/router-dhcp/default.nix @@ -8,11 +8,11 @@ with lib; let - routerCfg = config.services.qois.router; - cfg = config.services.qois.router.dhcp; + routerCfg = config.qois.router; + cfg = config.qois.router.dhcp; in { - options.services.qois.router.dhcp = { + options.qois.router.dhcp = { enable = mkEnableOption "router dhcp service"; localDomain = mkOption { diff --git a/nixos-modules/router-dns/default.nix b/nixos-modules/router-dns/default.nix index f1c13fc..ed8cbf2 100644 --- a/nixos-modules/router-dns/default.nix +++ b/nixos-modules/router-dns/default.nix @@ -8,12 +8,12 @@ with lib; let - routerCfg = config.services.qois.router; - dhcpCfg = config.services.qois.router.dhcp; - cfg = config.services.qois.router.recursiveDns; + routerCfg = config.qois.router; + dhcpCfg = config.qois.router.dhcp; + cfg = config.qois.router.recursiveDns; in { - options.services.qois.router.recursiveDns = { + options.qois.router.recursiveDns = { enable = mkEnableOption "router recursive dns service"; networkIdIp = mkOption { diff --git a/nixos-modules/router-wireless-ap/default.nix b/nixos-modules/router-wireless-ap/default.nix index 6c31b77..f18739d 100644 --- a/nixos-modules/router-wireless-ap/default.nix +++ b/nixos-modules/router-wireless-ap/default.nix @@ -8,11 +8,11 @@ with lib; let - routerCfg = config.services.qois.router; - cfg = config.services.qois.router.wireless; + routerCfg = config.qois.router; + cfg = config.qois.router.wireless; in { - options.services.qois.router.wireless = { + options.qois.router.wireless = { enable = mkEnableOption "router wireless service"; wleInterface24Ghz = mkOption { diff --git a/nixos-modules/router/default.nix b/nixos-modules/router/default.nix index c6bd125..c368bc8 100644 --- a/nixos-modules/router/default.nix +++ b/nixos-modules/router/default.nix @@ -8,10 +8,10 @@ with lib; let - cfg = config.services.qois.router; + cfg = config.qois.router; in { - options.services.qois.router = { + options.qois.router = { enable = mkEnableOption "router service"; wanInterface = mkOption { @@ -51,7 +51,7 @@ in type = types.str; example = "192.168.0.1"; description = '' - Internal IP of router. + Internal IP of router. ''; }; diff --git a/nixos-modules/wwan/default.nix b/nixos-modules/wwan/default.nix index 54b9555..7719eeb 100644 --- a/nixos-modules/wwan/default.nix +++ b/nixos-modules/wwan/default.nix @@ -10,7 +10,7 @@ with lib; let - cfg = config.services.qois.wwan; + cfg = config.qois.wwan; mbim-ip-configured = pkgs.writeScriptBin "mbim-ip-configured" ( '' @@ -34,7 +34,7 @@ let ''; in { - options.services.qois.wwan = { + options.qois.wwan = { enable = mkEnableOption "wwan client service"; apn = mkOption {