mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-23 12:37:30 +01:00
11 lines
164 B
Nix
11 lines
164 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
programs.steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
];
|
||
|
}
|