nixos/modules/desktop/game/steam/default.nix

16 lines
287 B
Nix
Raw Normal View History

2023-07-09 02:25:39 +04:00
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.game.steam;
in
{
options.modules.desktop.game.steam = {
2024-08-01 16:24:09 +04:00
enable = lib.mkEnableOption false;
2023-07-09 02:25:39 +04:00
};
2024-08-01 16:24:09 +04:00
config = lib.mkIf cfg.enable {
2023-07-09 02:25:39 +04:00
users.users.sako.packages = with pkgs; [
steam
];
};
}