45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.framework.13th-gen-intel
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
./disks.nix
|
|
../../common/services/powertop.nix
|
|
../../common/modules/secureboot.nix
|
|
];
|
|
|
|
# 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:
|
|
networking.hostName = "nixos-framework";
|
|
|
|
hardware = {
|
|
opengl = {
|
|
enable = true;
|
|
driSupport32Bit = true;
|
|
driSupport = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# Game related things
|
|
gamemode
|
|
# WINE
|
|
wineWowPackages.stable
|
|
winetricks
|
|
wineWowPackages.waylandFull
|
|
];
|
|
}
|