13 lines
225 B
Nix
13 lines
225 B
Nix
# ./modules/apps/zen-browser.nix
|
|
{ lib, config, ... }:
|
|
|
|
{
|
|
mySystem = {
|
|
apps.zenBrowser = {
|
|
enable = true;
|
|
# just store symbolic info, no direct pkgs reference
|
|
packageRef = "zen-browser";
|
|
};
|
|
};
|
|
}
|