- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
17 lines
241 B
Nix
17 lines
241 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
gamescopeSession.enable = true;
|
|
};
|
|
|
|
home.packages = (with pkgs; [
|
|
bottles
|
|
lutris
|
|
heroic
|
|
prismlauncher
|
|
]);
|
|
}
|