liminalOS/users/youwen/linux/packages/x86_64/default.nix

25 lines
343 B
Nix
Raw Normal View History

{
pkgs,
inputs,
...
2024-09-02 18:16:22 -07:00
}:
let
2024-08-16 06:42:35 -07:00
createCommon = import ../common-packages.nix;
2024-09-02 18:16:22 -07:00
in
{
2024-08-16 06:42:35 -07:00
home.packages =
(createCommon pkgs)
++ (with pkgs; [
bitwarden-desktop
modrinth-app
lutris
sbctl
r2modman
zoom-us
]);
home.sessionVariables = {
2024-11-17 13:14:09 -08:00
DEFAULT_BROWSER = "${pkgs.zen-browser}/bin/zen";
};
}