10 lines
417 B
Nix
10 lines
417 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.firewall.allowedTCPPorts = [ 22 ];
|
||
|
}
|