This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nix-auto-installer/proxmox-lxc.nix
T
2026-07-19 13:29:35 +10:00

24 lines
366 B
Nix

{ pkgs, ... }:
{
imports = [
./common.nix
];
# LXC has no bootloader
boot.loader.grub.enable = false;
boot.loader.systemd-boot.enable = false;
# Ensure Proxmox console works
# services.getty.enable = true;
# environment.etc."auto-install.sh" = {
# source = ./auto-install.sh;
# mode = "0755";
# };
# networking.useDHCP = true;
}