1
0
Fork 0
nix-system-configurations/stylix/default.nix

29 lines
666 B
Nix

# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{ config, pkgs }:
{
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
image = config.lib.stylix.pixel "base0A";
polarity = "dark";
fonts = {
serif = {
package = pkgs.libertinus;
name = "Libertinus Serif";
};
sansSerif = {
package = pkgs.inter;
name = "Inter";
};
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrains Mono Nerd Font";
};
emoji = {
package = pkgs.openmoji-color;
name = "OpenMoji Color";
};
};
}