note: do not use the front ports on the fw16 for firmware flashing, they do not work for some godforsaken reason, even though all ports are supposed to support usb3.2 over USB-C removed the hyprland portals and such from configuration.nix, moved udev rules to a separate module in /modules/ added teams-for-linux because i was able to use it from a shell in a pinch and it worked flawlessly (once i got into the meeting, because it wasnt able to open the link by default since it was installed from a shell, hopefully a proper install comes with xdg default app rules but if not i can always add them)
22 lines
394 B
Nix
22 lines
394 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# All system packages required from nixos-unstable by default
|
|
environment.systemPackages = with pkgs; [
|
|
wineWowPackages.stable
|
|
wine
|
|
(wine.override { wineBuild = "wine64"; })
|
|
wine64
|
|
wineWowPackages.staging
|
|
winetricks
|
|
wineWowPackages.waylandFull
|
|
pciutils
|
|
dmidecode
|
|
nixd
|
|
adwaita-icon-theme
|
|
usbutils
|
|
android-tools
|
|
];
|
|
}
|