From c1a76f2b2bd2092f8e5f4f82327c6d62564979c6 Mon Sep 17 00:00:00 2001 From: kenji Date: Sat, 27 Dec 2025 10:11:03 -0600 Subject: [PATCH] add: matugen --- apps/firefox/home.nix | 1 + apps/matugen/home.nix | 5 +++++ apps/stylix/home.nix | 3 ++- modules/home/theme.nix | 1 + 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 apps/matugen/home.nix diff --git a/apps/firefox/home.nix b/apps/firefox/home.nix index 791cbae..482f820 100644 --- a/apps/firefox/home.nix +++ b/apps/firefox/home.nix @@ -63,6 +63,7 @@ search.force = true; isDefault = true; search.default = "ddg"; + extensions.force = true; # Full declarative mode enabled. # Note: Manual bookmarks added in the UI will be overwritten on next rebuild. diff --git a/apps/matugen/home.nix b/apps/matugen/home.nix new file mode 100644 index 0000000..8cc65df --- /dev/null +++ b/apps/matugen/home.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + home.packages = with pkgs; [ + matugen + ]; +} diff --git a/apps/stylix/home.nix b/apps/stylix/home.nix index 337220f..b0b1f59 100644 --- a/apps/stylix/home.nix +++ b/apps/stylix/home.nix @@ -12,7 +12,8 @@ autoEnable = false; targets = { firefox = { - enable = true; + enable = false; + colorTheme.enable = true; profileNames = [ "hakase" ]; diff --git a/modules/home/theme.nix b/modules/home/theme.nix index 9fb1a77..56c7a69 100644 --- a/modules/home/theme.nix +++ b/modules/home/theme.nix @@ -1,5 +1,6 @@ { imports = [ ../../apps/stylix/home.nix + ../../apps/matugen/home.nix ]; }