Auto-commit: 2026-01-05 17:51:14

This commit is contained in:
2026-01-05 17:51:14 +00:00
parent 21cdd1df02
commit 7bc6e333f1

View File

@@ -1,8 +1,9 @@
{ inputs, pkgs, ... }: { inputs, pkgs, nixosConfig, lib, ... }:
{ {
imports = [ imports = [
inputs.zen-browser.homeModules.beta inputs.zen-browser.homeModules.beta
]; ];
config = lib.mkIf nixosConfig.my.desktop.enable {
home.file."catppuccin-zen" = { home.file."catppuccin-zen" = {
target = ".zen/default/chrome/catppuccin-zen"; target = ".zen/default/chrome/catppuccin-zen";
source = ( source = (
@@ -95,4 +96,5 @@
associations.added = associations; associations.added = associations;
defaultApplications = associations; defaultApplications = associations;
}; };
};
} }