Alter services directory structure
This commit is contained in:
parent
6ccbd93bbc
commit
5967974d15
11 changed files with 21 additions and 8 deletions
|
@ -135,7 +135,6 @@
|
|||
inputs.agenix.nixosModules.default
|
||||
./common
|
||||
./services
|
||||
(builtins.toPath "${inputs.randomcat}/services/default.nix")
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
{
|
||||
imports = [
|
||||
./actual.nix
|
||||
./audiobookshelf.nix
|
||||
./qenya
|
||||
./randomcat
|
||||
|
||||
./distributed-builds.nix
|
||||
./forgejo.nix
|
||||
./headscale.nix
|
||||
./jellyfin.nix
|
||||
./navidrome.nix
|
||||
./owncast.nix
|
||||
./remote-builder.nix
|
||||
./web-redirect.nix
|
||||
];
|
||||
|
|
11
services/qenya/default.nix
Normal file
11
services/qenya/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
imports = [
|
||||
./actual.nix
|
||||
./audiobookshelf.nix
|
||||
./forgejo.nix
|
||||
./headscale.nix
|
||||
./jellyfin.nix
|
||||
./navidrome.nix
|
||||
./owncast.nix
|
||||
];
|
||||
}
|
7
services/randomcat/default.nix
Normal file
7
services/randomcat/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(builtins.toPath "${inputs.randomcat}/services/default.nix")
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue