2023-12-27 04:41:12 +01:00
|
|
|
{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
|
2023-10-08 12:21:29 +02:00
|
|
|
imports = [
|
|
|
|
./disks.nix
|
2023-12-31 15:23:43 +01:00
|
|
|
../../common/modules/secureboot.nix
|
2023-12-31 14:51:01 +01:00
|
|
|
../../common/modules/ssh-luks.nix
|
2023-12-27 10:27:55 +01:00
|
|
|
../../common/services/openrazer.nix
|
2023-12-31 15:08:40 +01:00
|
|
|
../../common/services/podman.nix
|
2023-10-08 12:21:29 +02:00
|
|
|
];
|
|
|
|
# steam, nvidia-x11, 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;
|
2023-12-27 10:30:12 +01:00
|
|
|
hardware.keyboard.zsa.enable = true;
|
2023-10-08 12:21:29 +02:00
|
|
|
|
|
|
|
# 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-12-27 05:13:32 +01:00
|
|
|
environment.systemPackages = [
|
|
|
|
# deployments and development environments
|
|
|
|
inputs.deploy-rs.packages.${platform}.deploy-rs
|
|
|
|
pkgs.distrobox
|
|
|
|
|
2023-10-08 12:21:29 +02:00
|
|
|
# nVidia gpu options
|
2023-12-27 05:13:32 +01:00
|
|
|
pkgs.gwe
|
|
|
|
pkgs.nvtop-nvidia
|
2023-10-08 12:21:29 +02:00
|
|
|
# WINE
|
2024-01-01 05:25:08 +01:00
|
|
|
# support 32-bit only
|
|
|
|
wine
|
|
|
|
# support 64-bit only
|
|
|
|
(wine.override { wineBuild = "wine64"; })
|
|
|
|
pkgs.wineWowPackages.staging
|
2023-12-27 05:13:32 +01:00
|
|
|
pkgs.winetricks
|
|
|
|
pkgs.wineWowPackages.waylandFull
|
2023-12-27 10:27:55 +01:00
|
|
|
|
|
|
|
# RGB stuff
|
|
|
|
pkgs.openrgb-with-all-plugins
|
2023-10-08 12:21:29 +02:00
|
|
|
];
|
2023-12-31 14:59:25 +01:00
|
|
|
|
|
|
|
# Generic Tailscale configs are in /nixos/common/services/tailscale.nix
|
|
|
|
# Set up the secrets file:
|
|
|
|
sops.secrets."tailscale_keys/nixos-desktop" = {
|
|
|
|
owner = "root";
|
|
|
|
sopsFile = ../../../secrets/tailscale.yaml;
|
|
|
|
restartUnits = [
|
|
|
|
"tailscaled.service"
|
|
|
|
"tailscaled-autoconnect.service"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/nixos-desktop";
|
|
|
|
# networking.firewall.allowedTCPPorts = [ 22 ];
|
|
|
|
|
2023-10-08 12:21:29 +02:00
|
|
|
}
|