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

66 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-18 12:09:51 +02:00
{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
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
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-19 09:34:23 +01:00
../../common/services/powertop.nix
2023-11-12 13:02:49 +01:00
../../common/services/fwupd.nix
2024-01-03 14:25:06 +01:00
../../common/services/podman.nix
2023-09-18 12:09:51 +02: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.keyboard.zsa.enable = true;
2023-11-25 11:04:12 +01:00
# hardware.cpu.intel.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";
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
driSupport = true;
};
};
environment.systemPackages = with pkgs; [
2024-01-03 14:25:06 +01:00
distrobox
2023-09-18 12:09:51 +02:00
# Game related things
gamemode
# WINE
wineWowPackages.stable
winetricks
wineWowPackages.waylandFull
];
2023-11-12 14:30:26 +01:00
# Generic Tailscale configs are in /nixos/common/services/tailscale.nix
# Set up the secrets file:
sops.secrets."tailscale_keys/nixos-framework" = {
owner = "root";
sopsFile = ../../../secrets/tailscale.yaml;
restartUnits = [
"tailscaled.service"
"tailscaled-autoconnect.service"
];
};
services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/nixos-framework";
# networking.firewall.allowedTCPPorts = [ 22 ];
2023-09-18 12:09:51 +02:00
}