forgot i hadnt done this yet very useful though, home-manager is probably now ready to use without the rest of this nixos config
19 lines
347 B
Nix
19 lines
347 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
|
|
qemu
|
|
];
|
|
}
|