fix infinite recursion

This commit is contained in:
Vivian 2023-05-31 16:45:10 +02:00
parent da52e4c695
commit f42290bb1c
6 changed files with 110 additions and 165 deletions

View file

@ -1,13 +0,0 @@
{ pkgs, modulesPath, lib, ... }: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix"
];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
environment.systemPackages = with pkgs; [ git ];
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
boot.supportedFilesystems = lib.mkForce [ "btrfs" "ext4" ];
}

View file

@ -1,12 +0,0 @@
{ pkgs, modulesPath, lib, ... }: {
imports = [ "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" ];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
environment.systemPackages = with pkgs; [ git ];
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
boot.supportedFilesystems =
lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
}

View file

@ -1,5 +1,5 @@
{ lib, ... }: {
imports = [ ../common/common.nix ../common/generic-lxc.nix ];
imports = [ ../common ../common/generic-lxc.nix ];
proxmoxLXC = {
manageNetwork = true;