27 lines
774 B
Nix
27 lines
774 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
./disko.nix
|
|
|
|
./hardware-configuration.nix # Include the results of the hardware scan.
|
|
./jellyfin.nix
|
|
./minecraft.nix
|
|
./gatus.nix
|
|
./ai.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# ai.enable = true;
|
|
jellyfin.enable = true;
|
|
minecraft.enable = true;
|
|
|
|
# This value determines the NixOS release with which your system is to be
|
|
# compatible, in order to avoid breaking some software such as database
|
|
# servers. You should change this only after NixOS release notes say you
|
|
# should.
|
|
system.stateVersion = "25.05"; # Did you read the comment?
|
|
}
|