24 lines
531 B
Nix
24 lines
531 B
Nix
{ config, pkgs, inputs, flakeRoot, ... }:
|
|
|
|
let
|
|
_ = builtins.trace ("Stylix enable = " + toString config.stylix.enable) null;
|
|
in
|
|
{
|
|
imports = [
|
|
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";
|
|
polarity = "dark";
|
|
};
|
|
}
|