blob: 7daab8efbfb648543fe613a405db0b72a4e52b12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ pkgs, config, lib, outputs, ... }:
{
options = {
stylix.enable = lib.mkEnableOption "enable stylix";
};
config = lib.mkIf config.stylix.enable {
stylix = with outputs.homeConfigurations."jerpo@ltrr-mini".config.stylix; {
image = image;
base16Scheme = base16Scheme;
autoEnable = false;
targets.console.enable = true;
fonts = with fonts; {
serif = serif;
sansSerif = sansSerif;
monospace = monospace;
emoji = emoji;
};
};
};
}
|