This commit is contained in:
Kat Inskip 2023-07-18 11:57:35 -07:00
parent 26196b3d59
commit 61b95262b8
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
3 changed files with 25 additions and 13 deletions

View file

@ -12,7 +12,7 @@ _: let
"${inputs.nixpkgs}/nixos/modules/virtualisation/lxc-container.nix"
];
nix.extraOptions = "extra-platforms = x86_64-linux";
nix.extraOptions = "extra-platforms = x86_64-linux i686-linux";
fileSystems = {
"/" = {
@ -33,10 +33,12 @@ _: let
pkgs.btop
];
networking.nftables.enable = mkForce false;
networking.useDHCP = false;
networking.interfaces.eth0.useDHCP = true;
networking = {
nftables.enable = mkForce false;
firewall.enable = mkForce false;
useDHCP = false;
interfaces.eth0.useDHCP = true;
};
nixpkgs.hostPlatform = mkDefault "aarch64-linux";