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

@ -78,6 +78,14 @@
};
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
home-manager.follows = "home-manager";
};
};
dobutterfliescry-net = {
url = "git+https://tearforge.net/cry/site";
inputs = {

View file

@ -15,6 +15,7 @@
../modules/editor/neovim
../modules/apps/firefox.nix
../modules/apps/zen-browser.nix
../modules/apps/thunderbird.nix
../modules/apps/nixcord.nix
../modules/apps/spicetify.nix

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;
};
}