nix-config/modules/home-manager-modules/programs/steam.nix
2025-06-03 20:22:35 -05:00

19 lines
283 B
Nix

{
lib,
pkgs,
config,
...
}: {
options.programs.steam = {
enable = lib.mkEnableOption "enable steam";
};
config = lib.mkIf config.programs.steam.enable {
home.packages = with pkgs; [
steam
steam.run
];
};
# TODO: bind impermanence config
}