From af711e59c399dbad967a243445f6044058264009 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 24 Sep 2025 18:30:53 +1000 Subject: [PATCH] feat: install lact --- hosts/desktop/configuration.nix | 3 ++- modules/nixos/features/gaming.nix | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 6130c89..b5cf575 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -18,12 +18,13 @@ link2c.enable = true; plasma.enable = true; # keep-sorted end - # config boot.initrd.luks.devices."luks-b164af31-c1c3-4b4e-83c8-eb39802c2027".device = "/dev/disk/by-uuid/b164af31-c1c3-4b4e-83c8-eb39802c2027"; + hardware.amdgpu.overdrive.enable = true; + services.btrfs.autoScrub.enable = true; system.stateVersion = "24.11"; diff --git a/modules/nixos/features/gaming.nix b/modules/nixos/features/gaming.nix index a653586..d09fc85 100644 --- a/modules/nixos/features/gaming.nix +++ b/modules/nixos/features/gaming.nix @@ -20,7 +20,7 @@ in wine wine64 winetricks - # keep-sorted end + # keep-sorted end ]; programs = { @@ -31,6 +31,11 @@ in }; }; + services.lact = { + enable = true; + settings = { }; + }; + # latest kernel boot.kernelPackages = pkgs.linuxPackages_latest; };