feat: meep

This commit is contained in:
Kat Inskip 2025-09-01 08:47:34 -07:00
parent dc9e30075d
commit e9031cbdd3
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
13 changed files with 166 additions and 129 deletions

View file

@ -39,6 +39,6 @@
};
};
autoEnable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-dawn.yaml";
base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";
};
}

View file

@ -2,6 +2,7 @@
fonts = {
packages = with pkgs; [
font-awesome
noto-fonts-cjk-sans
twitter-color-emoji
iosevka-bin
monaspace

View file

@ -0,0 +1,14 @@
{pkgs, ...}: {
services.xserver.desktopManager.runXdgAutostartIfNone = true;
i18n.inputMethod = {
type = "fcitx5";
enable = true;
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-anthy
fcitx5-gtk
];
};
};
}