nix/nixos/hosts/framework-server/default.nix
2023-11-29 20:31:44 +09:00

34 lines
No EOL
1.2 KiB
Nix

{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
imports = [
# inputs.nixos-hardware.nixosModules.framework-13-inch-13th-gen-intel
inputs.nixos-hardware.nixosModules.framework-13th-gen-intel
(modulesPath + "/installer/scan/not-detected.nix")
./disks.nix
../../common/modules/boot.nix
# ../../common/modules/secureboot.nix
../../common/services/fwupd.nix
./builder.nix
./ssh-luks.nix
./docker.nix
];
# steam , etc
nixpkgs.config.allowUnfree = false;
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "sd_mod" "uas" ];
boot.initrd.kernelModules = [ ];
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 ];
}