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

15 lines
227 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
{
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
}