move to default.nix

This commit is contained in:
nicknase27
2026-07-26 10:39:37 +02:00
parent 3e0a060cec
commit ffb52393b3
6 changed files with 24 additions and 24 deletions
+3 -3
View File
@@ -19,9 +19,9 @@
modules = [ modules = [
./hosts/hermes/configuration.nix ./hosts/hermes/configuration.nix
./hosts/hermes/hardware-configuration.nix ./hosts/hermes/hardware-configuration.nix
./modules/homelab.nix ./modules/services
./modules/security.nix ./modules/security
./modules/system.nix ./modules/system
agenix.nixosModules.default agenix.nixosModules.default
unifi-os-server.nixosModules.unifi-os-server unifi-os-server.nixosModules.unifi-os-server
]; ];
-13
View File
@@ -1,13 +0,0 @@
{
pkgs,
lib,
...
}: {
imports = [
./services/vaultwarden.nix
./services/navidrome.nix
./services/caddy.nix
./services/unifi.nix
./services/gitea.nix
];
}
@@ -1,6 +1,6 @@
{ pkgs, lib, config, ... }: { pkgs, lib, config, ... }:
{ {
imports = [ imports = [
./security/ssh.nix ./ssh.nix
]; ];
} }
+13
View File
@@ -0,0 +1,13 @@
{
pkgs,
lib,
...
}: {
imports = [
./vaultwarden.nix
./navidrome.nix
./caddy.nix
./unifi.nix
./gitea.nix
];
}
-7
View File
@@ -1,7 +0,0 @@
{ pkgs, lib, config, ... }:
{
imports = [
./system/garbage-collection.nix
./system/backups.nix
];
}
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, lib, config, ... }:
{
imports = [
./garbage-collection.nix
./backups.nix
];
}