nix/nixos/hosts/nixos-linode-img/default.nix
iFargle cc7e1aeddd
Some checks failed
build-linode-img / build-linode-img (push) Failing after 1s
Reorg linode img
2023-12-19 11:30:26 +09:00

21 lines
No EOL
511 B
Nix

{ config, lib, pkgs, modulesPath, desktop, username, ... }: {
boot = {
initrd.kernelModules = [ ];
kernelModules = [ "iptable_nat", "iptable_filter", "xt_nat" ];
extraModulePackages = [ ];
};
time.timezone = "Asia/Tokyo";
nixpkgs = {
config.allowUnfree = false;
hostPlatform = lib.mkDefault "x86_64-linux";
};
networking = {
hostName = "nixos-linode-img";
useDHCP = lib.mkForce false;
enableIPv6 = lib.mkForce false;
firewall.allowedTCPPorts = [ 22 ];
};
}