This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/default.nix

26 lines
505 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-06-25 22:18:07 +00:00
imports = [
./home.nix
./programs.nix
./services.nix
];
systemd.user.services = {
# TODO: Podman
};
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5.addons = with pkgs; [
fcitx5-configtool
fcitx5-gtk
2023-06-27 13:32:44 +00:00
fcitx5-chinese-addons
];
2023-06-27 22:55:05 +00:00
gtk = {
enable = true;
iconTheme = {
package = pkgs.iconpack-obsidian; # icon theme
name = "Obsidian";
};
};
}