nix-config/modules/nix/games/tas.nix
smayzy 74218acbf3
All checks were successful
nixos config pipeline / show-flake (push) Successful in 28s
nixos config pipeline / deploy (push) Successful in 35s
add tas utils
2025-10-12 18:46:47 +02:00

24 lines
343 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.tas.enable = mkOption {
type = types.bool;
default = false;
description = "tas things";
};
config = mkIf config.smayzy.tas.enable {
environment.systemPackages = with pkgs; [
libtas
depotdownloader
];
};
}