feat(gaming): Install wine64 and bottles

This commit is contained in:
Alexander Kobjolke 2024-05-19 00:23:12 +02:00
parent 4f9ad294fd
commit 377e844f13

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
imports = [ imports = [
@ -27,8 +32,11 @@
keyboard.layout = "us"; keyboard.layout = "us";
keyboard.variant = "dvorak"; keyboard.variant = "dvorak";
keyboard.options = keyboard.options = [
[ "terminate:ctrl_alt_bksp" "caps:escape" "compose:ralt" ]; "terminate:ctrl_alt_bksp"
"caps:escape"
"compose:ralt"
];
packages = with pkgs; [ packages = with pkgs; [
# social # social
@ -41,7 +49,8 @@
# gaming support # gaming support
lutris lutris
winePackages.stagingFull bottles
wine64Packages.stagingFull
# reading # reading
calibre calibre
@ -66,19 +75,23 @@
enable = true; enable = true;
package = pkgs.firefox.override { package = pkgs.firefox.override {
cfg = { cfg = {
nativeMessagingHosts.packages = nativeMessagingHosts.packages = [
[ pkgs.browserpass pkgs.tridactyl-native ]; pkgs.browserpass
pkgs.tridactyl-native
];
enableGnomeExtensions = true; enableGnomeExtensions = true;
}; };
}; };
}; };
mpv.enable = true; mpv.enable = true;
zsh = let zsh =
let
auth-socket-env = '' auth-socket-env = ''
export SSH_AUTH_SOCK="$(${pkgs.gnupg}/bin/gpgconf -L agent-ssh-socket)" export SSH_AUTH_SOCK="$(${pkgs.gnupg}/bin/gpgconf -L agent-ssh-socket)"
''; '';
in { in
{
enable = true; enable = true;
loginExtra = auth-socket-env; loginExtra = auth-socket-env;
initExtra = auth-socket-env; initExtra = auth-socket-env;