43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.lxc = { pkgs, lib, ...}:
|
|
let
|
|
selfPackages = inputs.self.packages.${pkgs.stdenv.hostPlatform.system};
|
|
rootShellPath = lib.getExe' selfPackages.jsl-zsh-tty "jsl-zsh-tty";
|
|
in
|
|
{
|
|
imports = with inputs.self.modules.nixos; [
|
|
({ modulesPath, ... }: { imports = [ "${modulesPath}/virtualisation/proxmox-lxc.nix" ]; })
|
|
];
|
|
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
|
|
system.stateVersion = "25.11";
|
|
time.timeZone = "US/Central";
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
selfPackages.jsl-zsh-tty
|
|
];
|
|
environment.shells = lib.mkAfter [ rootShellPath ];
|
|
users.users.root.shell = lib.mkForce rootShellPath;
|
|
|
|
networking.nameservers = [ "192.168.1.150" ];
|
|
|
|
# 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";
|
|
};
|
|
programs.bash.enable = true;
|
|
};
|
|
|
|
# Generic bootstrapping lxc, use a specific host file for more
|
|
flake.nixosConfigurations.lxc = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = with inputs.self.modules.nixos; [
|
|
lxc
|
|
];
|
|
};
|
|
}
|