add steamcmd and steam-tui to steam config
This commit is contained in:
parent
5cc3cb08a4
commit
495f8f5cf3
1 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,19 @@
|
|||
_: {
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (config.poz.other.system) username;
|
||||
|
||||
inherit (lib.attrsets) attrValues;
|
||||
in {
|
||||
programs.steam.enable = true;
|
||||
|
||||
home-manager.users.${username} = {
|
||||
home.packages = attrValues {
|
||||
inherit (pkgs.steamPackages) steamcmd;
|
||||
inherit (pkgs) steam-tui;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue