add tas utils
All checks were successful
nixos config pipeline / show-flake (push) Successful in 28s
nixos config pipeline / deploy (push) Successful in 35s

This commit is contained in:
smayzy 2025-10-12 18:46:47 +02:00
parent f2f589884d
commit 74218acbf3
3 changed files with 25 additions and 0 deletions

View File

@ -31,6 +31,7 @@
hyprland.enable = true;
kde.enable = true;
docker.enable = true;
tas.enable = true;
containers = {
nixos = {
};

View File

@ -3,5 +3,6 @@
imports = [
./prism.nix
./steam.nix
./tas.nix
];
}

23
modules/nix/games/tas.nix Normal file
View File

@ -0,0 +1,23 @@
{
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
];
};
}