nix/nixos/users/albert/desktop.nix
2024-02-09 22:43:02 +09:00

19 lines
No EOL
376 B
Nix

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