calling it, multi user is building!!!

This commit is contained in:
Chris Kruining 2025-03-23 21:04:12 +01:00
parent ce69116c39
commit c165dbd9a3
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
8 changed files with 100 additions and 42 deletions

View file

@ -1,4 +1,4 @@
{ inputs, config, lib, ... }:
{ inputs, config, lib, pkgs, ... }:
let
inherit (lib) mkIf;
inherit (lib.options) mkEnableOption;
@ -15,6 +15,35 @@ in
};
config = mkIf cfg.enable {
stylix = {
enable = true;
autoEnable = true;
# base16Scheme = "${pkgs.base16-schemes}/share/themes/${cfg.theme}.yaml";
# image = ./${cfg.theme}.jpg;
# polarity = cfg.polarity;
fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono Nerd Font Mono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
};
};
}