nix/nixos/foxtrot.nix

171 lines
4.8 KiB
Nix
Raw Normal View History

2023-10-09 15:09:02 -05:00
{
flake,
inputs,
outputs,
lib,
# config,
pkgs,
...
}: {
networking.hostName = "foxtrot";
imports =
[
flake.diskoConfigurations.standard
2024-01-04 18:55:30 -06:00
inputs.hardware.nixosModules.framework-13-7040-amd
2023-10-09 15:09:02 -05:00
]
++ (with outputs.nixosModules; [
desktop-usage
podman
postgres
wifi
# hyprland
2024-01-04 18:55:30 -06:00
]);
2023-10-09 15:09:02 -05:00
# use updated ppd for framework 13:
# source: https://community.frame.work/t/tracking-ppd-v-tlp-for-amd-ryzen-7040/39423/137?u=lytedev
nixpkgs.overlays = [
(
final: prev: {
power-profiles-daemon = prev.power-profiles-daemon.overrideAttrs (
old: {
version = "0.13-1";
patches =
(old.patches or [])
++ [
(prev.fetchpatch {
url = "https://gitlab.freedesktop.org/upower/power-profiles-daemon/-/merge_requests/127.patch";
sha256 = "sha256-jnq5yJvWQHOlZ78SE/4/HqiQfF25YHQH/T4wwDVRHR0=";
})
(prev.fetchpatch {
url = "https://gitlab.freedesktop.org/upower/power-profiles-daemon/-/merge_requests/128.patch";
sha256 = "sha256-YD9wn9IQlCp02r4lmwRnx9Eur2VVP1JfC/Bm8hlzF3Q=";
})
(prev.fetchpatch {
url = "https://gitlab.freedesktop.org/upower/power-profiles-daemon/-/merge_requests/129.patch";
sha256 = "sha256-9T+I3BAUW3u4LldF85ctE0/PLu9u+KBN4maoL653WJU=";
})
];
# explicitly fetching the source to make sure we're patching over 0.13 (this isn't strictly needed):
src = prev.fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "hadess";
repo = "power-profiles-daemon";
rev = "0.13";
sha256 = "sha256-ErHy+shxZQ/aCryGhovmJ6KmAMt9OZeQGDbHIkC0vUE=";
};
}
);
}
)
];
2023-11-21 10:36:19 -06:00
swapDevices = [
# TODO: move this to disko?
2023-12-04 09:34:13 -06:00
# NOTE(oninstall):
2023-11-21 10:36:19 -06:00
# sudo btrfs subvolume create /swap
# sudo btrfs filesystem mkswapfile --size 32g --uuid clear /swap/swapfile
# sudo swapon /swap/swapfile
{device = "/swap/swapfile";}
];
# findmnt -no UUID -T /swap/swapfile
2023-12-04 09:34:13 -06:00
boot.resumeDevice = "/dev/disk/by-uuid/81c3354a-f629-4b6b-a249-7705aeb9f0d5";
2023-11-21 10:36:19 -06:00
services.logind = {
lidSwitch = "suspend-then-hibernate";
extraConfig = ''
HandlePowerKey=suspend-then-hibernate
IdleAction=suspend-then-hibernate
IdleActionSec=10m
2023-11-21 10:36:19 -06:00
'';
};
2023-11-29 21:27:15 -06:00
systemd.sleep.extraConfig = "HibernateDelaySec=90m";
2023-10-09 15:09:02 -05:00
2023-11-21 10:14:58 -06:00
services.fwupd.enable = true;
services.fwupd.extraRemotes = ["lvfs-testing"];
hardware.opengl.extraPackages = [
# pkgs.rocmPackages.clr.icd
2023-11-21 10:14:58 -06:00
pkgs.amdvlk
# encoding/decoding acceleration
pkgs.libvdpau-va-gl
pkgs.vaapiVdpau
];
2023-11-17 05:32:47 -06:00
hardware.wirelessRegulatoryDatabase = true;
2023-12-17 09:58:06 -06:00
hardware.framework.amd-7040.preventWakeOnAC = true;
2023-10-09 15:09:02 -05:00
boot = {
2023-11-29 21:27:15 -06:00
kernelPackages = pkgs.linuxPackages_latest; # seeing if using the stable kernel makes wow work
2023-10-09 15:09:02 -05:00
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
2023-11-29 21:27:15 -06:00
2023-12-04 09:34:13 -06:00
# NOTE(oninstall):
2023-11-21 10:36:19 -06:00
# sudo filefrag -v /swap/swapfile | awk '$1=="0:" {print substr($4, 1, length($4)-2)}'
# the above won't work for btrfs, instead you need
# btrfs inspect-internal map-swapfile -r /swap/swapfile
# https://wiki.archlinux.org/title/Power_management/Suspend_and_hibernate#Hibernation_into_swap_file
2023-11-13 09:10:04 -06:00
# many of these come from https://wiki.archlinux.org/title/Framework_Laptop_13#Suspend
2023-11-13 17:24:52 -06:00
kernelParams = [
2023-11-29 21:27:15 -06:00
"amdgpu.sg_display=0"
2023-11-13 17:24:52 -06:00
"acpi_osi=\"!Windows 2020\""
2023-12-04 09:34:13 -06:00
# NOTE(oninstall):
"resume_offset=3421665"
2023-11-21 10:14:58 -06:00
# "nvme.noacpi=1" # maybe causing crashes upon waking?
2023-11-29 21:27:15 -06:00
"rtc_cmos.use_acpi_alarm=1"
2023-11-13 17:24:52 -06:00
];
initrd.availableKernelModules = ["xhci_pci" "nvme" "thunderbolt"];
kernelModules = ["kvm-amd"];
2023-11-17 05:32:47 -06:00
extraModprobeConfig = ''
options cfg80211 ieee80211_regdom="US"
'';
2023-10-09 15:09:02 -05:00
};
2023-11-29 21:27:15 -06:00
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
2023-12-04 17:50:54 -06:00
2023-10-26 13:55:08 -05:00
services.fprintd = {
2023-11-13 09:10:04 -06:00
enable = false;
2023-10-26 14:58:03 -05:00
# tod.enable = true;
2023-10-26 13:55:08 -05:00
# tod.driver = pkgs.libfprint-2-tod1-goodix;
};
2023-11-17 05:36:19 -06:00
services.power-profiles-daemon = {
enable = true;
2023-11-17 05:36:19 -06:00
};
services.tlp = {
enable = false;
settings = {
2023-10-26 13:55:08 -05:00
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
2023-11-29 21:27:15 -06:00
CPU_SCALING_GOVERNOR_ON_BAT = "ondemand";
2023-10-26 13:55:08 -05:00
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 60;
2023-10-09 15:09:02 -05:00
2023-10-26 13:55:08 -05:00
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
CPU_MIN_PERF_ON_AC = 0;
CPU_MAX_PERF_ON_AC = 100;
};
};
powerManagement.powertop.enable = true;
2023-10-17 23:37:05 -05:00
2023-10-09 15:09:02 -05:00
networking = {
firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [22];
allowedUDPPorts = [];
};
};
2023-12-04 09:14:13 -06:00
system.stateVersion = "24.05";
2023-10-09 15:09:02 -05:00
}