remove libtas & sam

This commit is contained in:
smayzy 2026-01-17 12:29:25 +01:00
parent cd9d91e189
commit 00fa7a3c36
3 changed files with 1 additions and 25 deletions

View File

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

View File

@ -16,6 +16,6 @@ in
config = mkIf config.smayzy.steam.enable { config = mkIf config.smayzy.steam.enable {
programs.steam.enable = true; programs.steam.enable = true;
environment.systemPackages = with pkgs; [ samrewritten ]; environment.systemPackages = with pkgs; [ depotdownloader];
}; };
} }

View File

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