add zen-browser

This commit is contained in:
do butterflies cry? 2026-03-10 00:13:01 +10:00
parent b2b49c3bda
commit 2d677a19ac
Signed by: cry
GPG key ID: F68745A836CA0412
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
inputs,
system,
...
}: let
inherit (inputs) zen-browser;
in {
imports = [
zen-browser.homeModules.twilight
];
programs.zen-browser = {
enable = true;
package = zen-browser.packages.${system}.twilight;
# suppressXdgMigrationWarning = true;
};
}