nix/nixos/users/albert/desktop.nix

25 lines
512 B
Nix
Raw Normal View History

2024-02-10 02:13:46 +01:00
{ config, lib, pkgs, pkgs-unstable, desktop, inputs, system, ... }: {
2023-09-23 11:30:35 +02:00
# Steam, Vintage Story areu nfree.
2024-02-09 13:31:22 +01:00
environment.systemPackages = [
pkgs.bitwarden
pkgs.steam
pkgs.lutris
pkgs.vlc
2024-02-10 02:13:46 +01:00
pkgs-unstable.vintagestory
2024-05-02 06:49:24 +02:00
pkgs.tor-browser
pkgs.onionshare
pkgs.onionshare-gui
2024-05-04 03:47:55 +02:00
pkgs.yubikey-personalization
pkgs.yubikey-personalization-gui
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
];
2024-05-02 03:10:33 +02:00
}