16 lines
288 B
Nix
16 lines
288 B
Nix
{...}: {
|
|
config.flake.modules.nixos.steam = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.azos.steam.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
config = lib.mkIf config.azos.steam.enable {
|
|
programs.steam.enable = true;
|
|
};
|
|
};
|
|
}
|