trying stylix

This commit is contained in:
2026-03-17 08:57:53 +00:00
parent 24b76fc93d
commit fefb97eb7c
4 changed files with 27 additions and 1 deletions
+13
View File
@@ -614,6 +614,13 @@ in
inputs.stylix.nixosModules.stylix
];
environment.systemPackages = with pkgs; [
feh # wallpaper target
#gtk3 # GTK target
# gtk4 # GTK target
st # NVF / terminal target, or kitty
];
stylix = {
enable = true;
base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
@@ -628,6 +635,12 @@ Sets theming for GTK
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# feh # wallpaper target
gtk3 # GTK target
gtk4 # GTK target
#st # NVF / terminal target, or kitty
];
# Stylix GTK target
stylix.targets.gtk.enable = true;
}