nix/nixos/users/albert/desktop.nix

14 lines
248 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
];
imports = [
../../common/software/gui/firefox.nix
];
2023-08-23 07:30:15 +02:00
}