2024-09-14 19:55:09 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.poz.other.system) username;
|
|
|
|
|
|
|
|
inherit (lib.attrsets) attrValues;
|
|
|
|
in {
|
2024-07-22 20:49:49 +02:00
|
|
|
programs.steam.enable = true;
|
2024-09-14 19:55:09 +02:00
|
|
|
|
2024-10-02 16:55:18 +02:00
|
|
|
users.users.${username}.packages = attrValues {
|
2024-10-19 21:17:06 +02:00
|
|
|
inherit (pkgs) steam-tui steamcmd;
|
2024-09-14 19:55:09 +02:00
|
|
|
};
|
2024-07-22 20:49:49 +02:00
|
|
|
}
|