18 lines
358 B
Nix
18 lines
358 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix # Include the results of the hardware scan.
|
|
./jellyfin.nix
|
|
./minecraft.nix
|
|
./gatus.nix
|
|
./ai.nix
|
|
./alps.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# ai.enable = true;
|
|
jellyfin.enable = true;
|
|
minecraft.enable = true;
|
|
}
|