23 lines
349 B
Nix
23 lines
349 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
stylix,
|
|
...
|
|
}:
|
|
{
|
|
config = {
|
|
stylix = {
|
|
enable = true;
|
|
polarity = config.frogeye.polarity;
|
|
fonts = {
|
|
monospace = {
|
|
package = pkgs.nerd-fonts.dejavu-sans-mono;
|
|
name = "DejaVuSansM Nerd Font";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
imports = [
|
|
stylix.homeModules.stylix
|
|
];
|
|
}
|