27 lines
537 B
Nix
27 lines
537 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = [
|
|
pkgs.bottles
|
|
pkgs.lutris
|
|
pkgs.mangohud
|
|
pkgs.path-of-building
|
|
pkgs.protonplus
|
|
pkgs.r2modman
|
|
|
|
pkgs
|
|
. # steamtinkerlaunch dependencies
|
|
pkgs
|
|
.xdotool
|
|
pkgs.xorg.xwininfo
|
|
pkgs.yad
|
|
|
|
inputs.self.packages.${pkgs.system}.bolt-launcher
|
|
# this is really ugly but needed since packages uses its own version of nixpkgs and i dont want to override flake-level nixpkgs
|
|
(pkgs.callPackage
|
|
../../../pkgs/bolt-launcher.nix
|
|
{})
|
|
];
|
|
}
|