Files
azos/modules/home-manager/steam.nix
T
2025-04-27 09:56:36 +03:00

18 lines
310 B
Nix
Executable File

{ lib, config, pkgs, ... }:
let
isEnabled =
config.azos.steam.enable;
in {
options.azos.steam.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
steam
];
};
}