mirror of
https://github.com/RGBCube/ncc
synced 2026-01-15 01:31:02 +00:00
5 lines
134 B
Nix
5 lines
134 B
Nix
{ config, pkgs, lib, ... }: let
|
|
inherit (lib) enabled merge mkIf;
|
|
in merge <| mkIf config.isDesktop {
|
|
programs.steam = enabled;
|
|
}
|