feat: server beginnings

This commit is contained in:
Ahwx 2024-06-21 10:53:20 +02:00
parent 64f737ee3d
commit 4977342183
2 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ ... }:
{
imports =
[ (import ./bootloader.nix) ]
++ [ (import ./hardware.nix) ]
++ [ (import ./network.nix) ]
++ [ (import ./program.nix) ]
++ [ (import ./security.nix) ]
++ [ (import ./services.nix) ]
++ [ (import ./system.nix) ]
++ [ (import ./user.nix) ]
++ [ (import ./virtualization.nix) ];
}