Add openssl to steam (for 'Gods will be watching')

This commit is contained in:
Malte Tammena 2021-07-15 14:12:24 +02:00
parent cb3609f8a8
commit 15e04ad65b
2 changed files with 11 additions and 1 deletions

View file

@ -58,7 +58,7 @@ let
in {
home.packages = [
# Necessary packages
pkgs.steam-run-native
#pkgs.steam-run-native
pkgs.libnotify
] ++ map mkScript games;
}

View file

@ -140,7 +140,17 @@ in {
};
programs.dconf.enable = true;
programs.steam.enable = true;
nixpkgs.config.packageOverrides = pkgs: {
steam = pkgs.steam.override {
extraPkgs = pkgs: [
pkgs.openssl
];
#nativeOnly = true;
};
};
programs.sway.enable = true;
services.dbus.packages = [ pkgs.gnome3.dconf ];
services.udev.packages = with pkgs; [ yubikey-personalization ];