nix/nixos/hosts/nixos-linode-img/default.nix
iFargle 9fc7b717c7
Some checks failed
build-linode-img / build-linode-img (push) Failing after 29s
Test
2023-12-19 11:21:01 +09:00

11 lines
No EOL
459 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.firewall.allowedTCPPorts = [ 22 ];
}