36 lines
738 B
Nix
36 lines
738 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [inputs.stylix.homeModules.stylix];
|
|
|
|
home.packages = with pkgs; [
|
|
# themes firefox with wallpaper theme
|
|
pywalfox-native
|
|
];
|
|
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
|
|
# TODO: Figure out a way for automatic dark-/light-mode switching
|
|
# I've tried:
|
|
# rose-pine-dawn
|
|
# rose-pine-moon
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-mirage.yaml";
|
|
|
|
targets = {
|
|
gtk.enable = false;
|
|
qt.enable = false;
|
|
firefox.profileNames = ["default" "work" "streaming"];
|
|
};
|
|
|
|
cursor = {
|
|
package = pkgs.rose-pine-cursor;
|
|
# name = "Rosé Pine Dawn";
|
|
name = "BreezeX-RosePineDawn-Linux";
|
|
size = 32;
|
|
};
|
|
};
|
|
}
|