zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 29387e864e3887bc5d82dc01e63e775a86064bb8
parent a3facdcf5a05427d17ff7c3b7d2ebbe5ed7fe563
Author: Katja (zaphyra) <git@ctu.cx>
Date: Mon, 9 Jun 2025 13:29:47 +0200

hosts: import minimal profile
4 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/hosts/huntii/default.nix b/hosts/huntii/default.nix
@@ -14,6 +14,7 @@
 
   configuration =
     {
+      modulesPath,
       config,
       pkgs,
       lib,

@@ -21,6 +22,10 @@
     }:
     {
 
+      imports = [
+        (modulesPath + "/profiles/minimal.nix")
+      ];
+
       boot.initrd.systemd.emergencyAccess = true;
 
       sops.secrets."environments/cccdaWifi" = { };
diff --git a/hosts/morio/default.nix b/hosts/morio/default.nix
@@ -26,6 +26,7 @@
 
   configuration =
     {
+      modulesPath,
       inputs,
       config,
       pkgs,

@@ -33,6 +34,10 @@
     }:
     {
 
+      imports = [
+        (modulesPath + "/profiles/minimal.nix")
+      ];
+
       boot.initrd.systemd.emergencyAccess = true;
 
       sops.secrets = {
diff --git a/hosts/novus/default.nix b/hosts/novus/default.nix
@@ -26,6 +26,7 @@
 
   configuration =
     {
+      modulesPath,
       inputs,
       config,
       lib,

@@ -34,6 +35,11 @@
     }:
     {
 
+      imports = [
+        (modulesPath + "/profiles/minimal.nix")
+        ./dn42.nix
+      ];
+
       boot.initrd.systemd.emergencyAccess = true;
       boot.kernel.sysctl."net.ipv6.conf.all.proxy_ndp" = true;
 
diff --git a/hosts/polaris/default.nix b/hosts/polaris/default.nix
@@ -24,6 +24,7 @@
 
   configuration =
     {
+      modulesPath,
       inputs,
       hostConfig,
       config,

@@ -33,6 +34,10 @@
     }:
     {
 
+      imports = [
+        (modulesPath + "/profiles/minimal.nix")
+      ];
+
       boot = {
         kernelModules = [ "wireguard" ];