services: add services folder
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
./hosts/${hostname}/hardware-configuration.nix
|
./hosts/${hostname}/hardware-configuration.nix
|
||||||
./base/base.nix
|
./base/base.nix
|
||||||
./roles/roles.nix
|
./roles/roles.nix
|
||||||
|
./services/services.nix
|
||||||
./hosts/${hostname}/default.nix
|
./hosts/${hostname}/default.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
17
services/services.nix
Normal file
17
services/services.nix
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# services/services.nix
|
||||||
|
# Entrypoint for all services files
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
pkgsUnstable,
|
||||||
|
inputs,
|
||||||
|
options,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./radicale.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
radicale.enable = lib.mkDefault false;
|
||||||
|
}
|
Reference in New Issue
Block a user