librewolf to home-manager

This commit is contained in:
2025-04-03 15:29:56 -06:00
parent a5fe52f1b5
commit 112db4db7c
6 changed files with 98 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
stylix = {
enable = true;
@@ -22,6 +22,7 @@
name = "DejaVu Serif";
};
};
targets.qt.platform = lib.mkForce "qtct";
};
home-manager.users.jawz.stylix = {
iconTheme = {
@@ -30,5 +31,9 @@
light = "Papirus-Light";
dark = "Papirus-Dark";
};
targets.librewolf = {
firefoxGnomeTheme.enable = true;
profileNames = [ "jawz" ];
};
};
}