17 lines
309 B
Nix
17 lines
309 B
Nix
{pkgs, ...}: {
|
|
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
|
|
];
|
|
} |