Compare commits

..

2 Commits

Author SHA1 Message Date
147af92a85
system: install font-awesome 2024-06-28 23:36:23 -04:00
426d72e0f6
stylix: disable waybar styling
scaling looks weird, also too monotone right now
2024-06-28 23:35:15 -04:00
2 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@
targets.fzf.enable = lib.mkDefault false; targets.fzf.enable = lib.mkDefault false;
# the ring is styled light so it's light on light which looks worse than the default theme # the ring is styled light so it's light on light which looks worse than the default theme
targets.swaylock.enable = lib.mkDefault false; targets.swaylock.enable = lib.mkDefault false;
targets.waybar.enable = lib.mkDefault false;
} }
# only if styix is standalone # only if styix is standalone
(lib.mkIf (!(args ? osConfig && args.osConfig ? stylix)) { (lib.mkIf (!(args ? osConfig && args.osConfig ? stylix)) {

View File

@ -13,7 +13,7 @@ in
# ]; # ];
options.nixfiles.common.desktop = { options.nixfiles.common.desktop = {
enable = mkEnableOption "common desktop options"; enable = mkEnableOption "common desktop configuration";
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
@ -50,6 +50,7 @@ in
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; }) (nerdfonts.override { fonts = [ "FiraCode" ]; })
font-awesome
noto-fonts-cjk noto-fonts-cjk
(google-fonts.override { fonts = [ "NovaSquare" ];}) (google-fonts.override { fonts = [ "NovaSquare" ];})
]; ];