nixos/modules/desktop/game/steam.nix
2023-07-07 20:38:41 +03:00

15 lines
274 B
Nix

{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.desktop.game.steam;
in {
options.modules.desktop.game.steam = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
steam
];
};
}