nixos/system/Legion.nix

22 lines
469 B
Nix
Raw Normal View History

2024-07-30 15:06:34 +01:00
{ ... }:
{
imports = [
./services/caddy.nix
./services/forgejo.nix
./services/grafana.nix
./services/home-assistant.nix
./services/minecraft.nix
./services/nix-serve.nix
# ./services/radicale.nix
./services/sshd.nix
./services/syncthing.nix
# ./services/znc.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
users.mutableUsers = false;
hardware.bluetooth.enable = true;
}