Gonna revert and modify the original flake, add back overlays from a shared file, and figure things out after
This commit is contained in:
parent
65f90a0bf3
commit
4ad26636a7
17 changed files with 116 additions and 14 deletions
6
modules/system/services/common/default.nix
Normal file
6
modules/system/services/common/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./ssh
|
||||
];
|
||||
}
|
7
modules/system/services/default.nix
Normal file
7
modules/system/services/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./common
|
||||
./pc
|
||||
];
|
||||
}
|
10
modules/system/services/pc/default.nix
Normal file
10
modules/system/services/pc/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./mpd
|
||||
./networkfs
|
||||
./school
|
||||
./sunshine
|
||||
./virtualization/qemu
|
||||
];
|
||||
}
|
18
modules/system/services/server/default.nix
Normal file
18
modules/system/services/server/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./acme
|
||||
./ddclient
|
||||
./fileserver
|
||||
./forgejo
|
||||
./icecast
|
||||
./mailserver
|
||||
./minecraft
|
||||
./misc
|
||||
./mysql
|
||||
./nginx
|
||||
./social
|
||||
./transmission
|
||||
./vaultwarden
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue