mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: meep
This commit is contained in:
parent
dc9e30075d
commit
e9031cbdd3
13 changed files with 166 additions and 129 deletions
|
|
@ -39,6 +39,6 @@
|
|||
};
|
||||
};
|
||||
autoEnable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-dawn.yaml";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
fonts = {
|
||||
packages = with pkgs; [
|
||||
font-awesome
|
||||
noto-fonts-cjk-sans
|
||||
twitter-color-emoji
|
||||
iosevka-bin
|
||||
monaspace
|
||||
|
|
|
|||
14
nixos/profiles/graphical/ime.nix
Normal file
14
nixos/profiles/graphical/ime.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue