liminalOS/users/youwen/linux/packages/aarch-64/default.nix

13 lines
217 B
Nix
Raw Normal View History

{ inputs, pkgs, ... }:
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-12-15 02:53:05 -08:00
home.packages = (createCommon pkgs) ++ [
];
2024-11-17 13:14:09 -08:00
home.sessionVariables = {
DEFAULT_BROWSER = "${pkgs.zen-browser}/bin/zen";
};
2024-09-02 18:16:22 -07:00
}