mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 21:22:10 -08:00
12 lines
217 B
Nix
12 lines
217 B
Nix
{ inputs, pkgs, ... }:
|
|
let
|
|
createCommon = import ../common-packages.nix;
|
|
in
|
|
{
|
|
home.packages = (createCommon pkgs) ++ [
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
DEFAULT_BROWSER = "${pkgs.zen-browser}/bin/zen";
|
|
};
|
|
}
|