move to default.nix
This commit is contained in:
@@ -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
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [
|
||||||
|
./vaultwarden.nix
|
||||||
|
./navidrome.nix
|
||||||
|
./caddy.nix
|
||||||
|
./unifi.nix
|
||||||
|
./gitea.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./system/garbage-collection.nix
|
|
||||||
./system/backups.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, lib, config, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./garbage-collection.nix
|
||||||
|
./backups.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user