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

77 lines
2.2 KiB
Nix
Raw Normal View History

{ inputs, config, lib, pkgs, modulesPath, desktop, hostname, username, ... }: {
2023-09-18 12:09:51 +02:00
imports = [
2023-12-09 13:46:28 +01:00
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
2023-09-18 12:09:51 +02:00
(modulesPath + "/installer/scan/not-detected.nix")
2023-09-21 12:32:42 +02:00
./disks.nix
../../common/services/tailscale-autoconnect.nix
2023-09-18 12:09:51 +02:00
../../common/modules/secureboot.nix
2023-12-06 07:32:21 +01:00
../../common/modules/udev-rules.nix
../../common/modules/ssh-luks.nix
2023-11-12 13:02:49 +01:00
../../common/services/fwupd.nix
2024-01-08 13:23:17 +01:00
../../common/services/tlp.nix
2023-09-18 12:09:51 +02:00
];
# steam , etc
nixpkgs.config.allowUnfree = true;
2024-01-05 04:26:13 +01:00
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" ];
2024-01-08 05:09:46 +01:00
boot.initrd.kernelModules = [ "amdgpu" ];
2024-01-05 04:26:13 +01:00
boot.kernelModules = [ "kvm-amd" "acpi_call" ];
2024-01-08 04:50:52 +01:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2024-01-05 04:26:13 +01:00
# boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
2023-09-18 12:09:51 +02:00
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
hardware.keyboard.zsa.enable = true;
2024-01-05 04:29:13 +01:00
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2023-09-18 12:09:51 +02:00
# Set your time zone.
time.timeZone = "Asia/Tokyo";
# Set the networking hostname:
networking.hostName = "nixos-framework";
2024-01-05 14:26:10 +01:00
# Laptop can't sleep for some reason
systemd.services.systemd-logind.environment = {
SYSTEMD_BYPASS_HIBERNATION_MEMORY_CHECK = "1";
};
2023-09-18 12:09:51 +02:00
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
driSupport = true;
};
};
2024-01-07 10:50:15 +01:00
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
general = {
renice = 10;
};
# Warning: GPU optimisations have the potential to damage hardware
gpu = {
# apply_gpu_optimisations = "accept-responsibility";
gpu_device = 0;
amd_performance_level = "high";
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
};
};
2024-01-07 10:51:17 +01:00
};
2024-01-07 10:50:15 +01:00
2023-09-18 12:09:51 +02:00
environment.systemPackages = with pkgs; [
2024-01-08 12:30:24 +01:00
# distrobox
2023-09-18 12:09:51 +02:00
# Game related things
gamemode
# WINE
wineWowPackages.stable
winetricks
wineWowPackages.waylandFull
];
}