This commit is contained in:
iFargle 2023-08-23 17:25:24 +09:00
parent ba1cc06f34
commit 05a005a873

View file

@ -1,14 +1,18 @@
{ lib, pkgs, desktop, ... }: {
environment.systemPackages = with pkgs; [
firefox
thunderbird
bitwarden
steam
lutris
vlc
];
imports = [
../../common/software/gui/firefox.nix
];
# Allow steam, unfree
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam" ];
environment.systemPackages = with pkgs; [
firefox
thunderbird
bitwarden
steam
lutris
vlc
];
imports = [
../../common/software/gui/firefox.nix
];
}