1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

treewide: update flake lock

This commit is contained in:
RGBCube 2025-06-07 17:59:34 +03:00
parent eec914e613
commit 0eb7eb7475
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
5 changed files with 98 additions and 61 deletions

View file

@ -1,12 +1,5 @@
{ config, pkgs, lib, ... }: let
inherit (lib) attrValues merge mkIf;
inherit (lib) enabled merge mkIf;
in merge <| mkIf config.isDesktop {
# Steam uses 32-bit drivers for some unholy fucking reason.
hardware.graphics.enable32Bit = true;
environment.systemPackages = attrValues {
inherit (pkgs)
steam
;
};
programs.steam = enabled;
}