rename lib to apps

This commit is contained in:
Fabian Montero 2024-09-30 11:46:31 -06:00
parent b7dded2710
commit 6efd802700
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
6 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,14 @@
{
pkgs,
lib,
config,
...
}:
with lib; {
home.packages = [
(pkgs.callPackage ./package.nix {})
pkgs.protonup
pkgs.winetricks
pkgs.protontricks
];
}

View file

@ -0,0 +1,9 @@
{
writeShellScriptBin,
steam-run,
steam,
...
}:
writeShellScriptBin "steam" ''
exec ${steam-run}/bin/steam-run ${steam}/bin/steam -console
''