29 lines
868 B
Nix
29 lines
868 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.lxc = { pkgs, lib, ...}: {
|
|
imports = with inputs.self.modules.nixos; [
|
|
({ modulesPath, ... }: { imports = [ "${modulesPath}/virtualisation/proxmox-lxc.nix" ]; })
|
|
];
|
|
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
|
|
system.stateVersion = "25.11";
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
environment.systemPackages = with pkgs; [ git zsh ];
|
|
|
|
# security.sudo-rs.enable = true;
|
|
programs.nix-ld.enable = true;
|
|
nix.optimise.automatic = true;
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
};
|
|
|
|
# Generic bootstrapping lxc, use a specific host file for more
|
|
flake.nixosConfigurations.lxc = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = with inputs.self.modules.nixos; [
|
|
lxc
|
|
];
|
|
};
|
|
}
|