nix/nixos/hosts/nixos-linode-img/default.nix
iFargle e9ba9e9a83
All checks were successful
build-linode-img / build-linode-img (push) Successful in 3m5s
test
2023-12-19 11:24:14 +09:00

12 lines
No EOL
504 B
Nix

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