mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 10:13:50 -08:00
14 lines
237 B
Nix
14 lines
237 B
Nix
{pkgs, ...}: let
|
|
createCommon = import ../common-packages.nix;
|
|
in {
|
|
home.packages =
|
|
(createCommon pkgs)
|
|
++ (with pkgs; [
|
|
bitwarden-desktop
|
|
modrinth-app
|
|
lutris
|
|
wine
|
|
sbctl
|
|
r2modman
|
|
]);
|
|
}
|