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

42 lines
1.3 KiB
Nix
Raw Normal View History

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