feat: Add host sydpc
My, this is a lot TwT. Much work was batched as part of the transition from guix-rebound to nixos-testbed/sydpc. - Discord/Vesktop module & config. - Syncthing setup. - Assorted Emacs changes. - Waybar config. - Niri config. - Steam config. - Some MPD. - Stylix config. - Files/Impermanence things. - Enable Ghostty. - God knows what else.
This commit is contained in:
35
modules/nixos/stylix.nix
Normal file
35
modules/nixos/stylix.nix
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.sydnix.stylix;
|
||||
in {
|
||||
options.sydnix.stylix.enable =
|
||||
lib.mkEnableOption "Stylix";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/kanagawa.yaml";
|
||||
image = ./stylix/kanagawa.jpg;
|
||||
# fonts = {
|
||||
# serif = {
|
||||
# package = pkgs.ibm-plex;
|
||||
# name = "IBM Plex";
|
||||
# };
|
||||
# sansSerif = {
|
||||
# package = pkgs.dejavu_fonts;
|
||||
# name = "DejaVu Sans";
|
||||
# };
|
||||
# monospace = {
|
||||
# package = pkgs.nerd-fonts.victor-mono;
|
||||
# name = "VictorMono";
|
||||
# };
|
||||
# emoji = {
|
||||
# package = pkgs.twemoji-color-font;
|
||||
# name = "Noto Color Emoji";
|
||||
# };
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user