nix/nixos/users/albert/desktop.nix

19 lines
No EOL
322 B
Nix

{ config, lib, pkgs, desktop, ... }: {
# Steam, Vintage Story areu nfree.
environment.systemPackages = with pkgs; [
bitwarden
steam
lutris
vlc
vintagestory
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
imports = [
../../common/software/gui/firefox.nix
];
}