nix/nixos/hosts/nixos-desktop/default.nix
2023-12-31 22:31:35 +09:00

68 lines
1.8 KiB
Nix

{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
imports = [
./disks.nix
../../common/modules/boot.nix
# ../../common/modules/ssh-luks.nix
../../common/services/openrazer.nix
];
# steam, nvidia-x11, etc
nixpkgs.config.allowUnfree = true;
# Temporary, before the machine is on Headscale.
# Remove when finished.
networking.extraHosts = ''
192.168.1.210 code.sysctl.io
192.168.1.210 pass.sysctl.io
'';
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;
hardware.keyboard.zsa.enable = true;
# Set your time zone.
time.timeZone = "Asia/Tokyo";
# Set the networking hostname:
networking.hostName = "nixos-desktop";
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
driSupport = true;
};
nvidia = {
open = false;
nvidiaSettings = true;
modesetting.enable = true;
};
};
environment.systemPackages = [
# deployments and development environments
inputs.deploy-rs.packages.${platform}.deploy-rs
pkgs.distrobox
# nVidia gpu options
pkgs.vulkan-loader
pkgs.vulkan-validation-layers
pkgs.vulkan-tools
pkgs.gwe
pkgs.nvtop-nvidia
# WINE
pkgs.wineWowPackages.stable
pkgs.winetricks
pkgs.wineWowPackages.waylandFull
# RGB stuff
pkgs.openrgb-with-all-plugins
];
}