nix/nixos/users/albert/desktop.nix

19 lines
322 B
Nix
Raw Normal View History

2023-09-23 11:33:11 +02:00
{ config, lib, pkgs, desktop, ... }: {
2023-09-23 11:30:35 +02:00
# Steam, Vintage Story areu nfree.
2023-08-23 10:25:24 +02:00
environment.systemPackages = with pkgs; [
bitwarden
steam
lutris
vlc
2023-09-23 11:28:13 +02:00
vintagestory
2023-08-23 10:25:24 +02:00
];
2024-01-01 05:25:08 +01:00
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
2023-08-23 10:25:24 +02:00
imports = [
../../common/software/gui/firefox.nix
];
2023-08-23 07:30:15 +02:00
}