1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-26 07:43:45 +01:00
github.com-tboerger-nixos-c.../shared/programs/steam.nix

27 lines
350 B
Nix
Raw Normal View History

2022-09-27 22:07:46 +02:00
{ pkgs, lib, config, options, ... }:
with lib;
let
cfg = config.personal.programs.steam;
2022-09-27 22:07:46 +02:00
in
{
options = {
personal = {
programs = {
steam = {
enable = mkEnableOption "Steam";
2022-09-27 22:07:46 +02:00
};
};
};
};
config = mkIf cfg.enable {
programs = {
steam = {
2022-09-27 22:07:46 +02:00
enable = true;
};
};
};
}