nixos/modules/desktop/game/steam.nix
2023-07-07 22:46:47 +03:00

17 lines
323 B
Nix

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