nix/nixos/hosts/framework-server/default.nix

34 lines
1.2 KiB
Nix
Raw Normal View History

2023-11-25 15:17:29 +09:00
{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
imports = [
2023-11-25 22:57:30 +09:00
# inputs.nixos-hardware.nixosModules.framework-13-inch-13th-gen-intel
2023-11-26 14:44:52 +09:00
inputs.nixos-hardware.nixosModules.framework-13th-gen-intel
2023-11-25 15:17:29 +09:00
(modulesPath + "/installer/scan/not-detected.nix")
./disks.nix
2023-11-26 17:58:48 +09:00
../../common/modules/boot.nix
# ../../common/modules/secureboot.nix
2023-11-25 15:17:29 +09:00
../../common/services/fwupd.nix
2023-11-29 18:07:39 +09:00
./builder.nix
2023-11-29 20:31:44 +09:00
./ssh-luks.nix
2023-11-29 18:07:39 +09:00
./docker.nix
2023-11-25 15:17:29 +09:00
];
# steam , etc
2023-11-26 11:01:38 +09:00
nixpkgs.config.allowUnfree = false;
2023-11-25 15:17:29 +09:00
2023-11-26 11:01:38 +09:00
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "sd_mod" "uas" ];
2023-11-25 15:17:29 +09:00
boot.initrd.kernelModules = [ ];
2023-11-26 11:01:38 +09:00
boot.kernelModules = [ "kvm-intel" ];
# boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
2023-11-25 15:17:29 +09:00
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2023-11-26 11:01:38 +09:00
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
2023-11-25 15:17:29 +09:00
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# Set your time zone.
time.timeZone = "Asia/Tokyo";
# Set the networking hostname:
2023-11-25 19:04:12 +09:00
networking.hostName = "framework-server";
2023-11-25 15:17:29 +09:00
networking.firewall.allowedTCPPorts = [ 22 ];
2023-11-26 20:29:58 +09:00
}