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

28 lines
452 B
Nix
Raw Normal View History

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