16 lines
215 B
Nix
Executable file
16 lines
215 B
Nix
Executable file
{ pkgs, config, ... }:
|
|
{
|
|
|
|
programs.steam.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mumble # voip
|
|
element-desktop # fully featured matrix client
|
|
#gomuks # tui matrix client
|
|
];
|
|
|
|
|
|
|
|
|
|
}
|