nix/nixos/hosts/nixos-linode-img/default.nix
iFargle a83cb93c83
Some checks failed
build-linode-img / build-linode-img (push) Failing after 25s
Typos
2023-12-19 11:52:52 +09:00

21 lines
No EOL
509 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 ];
};
}