59 lines
1.9 KiB
Nix
59 lines
1.9 KiB
Nix
{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.framework-13th-gen-intel
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
./disks.nix
|
|
../../common/modules/secureboot.nix
|
|
../../common/modules/udev-rules.nix
|
|
../../common/services/fwupd.nix
|
|
../../common/modules/ssh-luks.nix
|
|
./builder.nix
|
|
./docker.nix
|
|
./wireguard.nix
|
|
./cron.nix
|
|
];
|
|
|
|
environment.systemPackages = [
|
|
inputs.deploy-rs.packages.${platform}.deploy-rs
|
|
];
|
|
|
|
# steam , etc
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "sd_mod" "uas" ];
|
|
boot.initrd.kernelModules = [ "r8152" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "Asia/Tokyo";
|
|
|
|
# Set the networking hostname:
|
|
networking.hostName = "framework-server";
|
|
networking.firewall.allowedTCPPorts = [ 22 ];
|
|
|
|
# Generic Tailscale configs are in /nixos/common/services/tailscale.nix
|
|
# Set up the secrets file:
|
|
sops.secrets."tailscale_keys/framework-server" = {
|
|
owner = "root";
|
|
sopsFile = ../../../secrets/tailscale.yaml;
|
|
restartUnits = [
|
|
"tailscaled.service"
|
|
"tailscaled-autoconnect.service"
|
|
];
|
|
};
|
|
services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/framework-server";
|
|
services.tailscale.extraUpFlags = [
|
|
"--advertise-exit-node"
|
|
"--advertise-routes=10.2.0.0/24"
|
|
];
|
|
|
|
boot.kernel.sysctl = {
|
|
"net.ipv4.ip_forward" = true;
|
|
};
|
|
}
|