diff --git a/home/christoph/default.nix b/home/christoph/default.nix index 070c7104..ebe114ee 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -440,7 +440,7 @@ rec { # Media wacomtablet - blender + # blender godot obs-studio # vlc # Addition to mpv without any shaders etc diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index ded59dd1..25335177 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -45,6 +45,16 @@ rec { "HDMI-A-1" = [1 2 3 4 5 6 7 8 9]; "HDMI-A-2" = [10]; }; + + autostart = [ + "hyprctl dispatch exec \"sleep 15s && fcitx5\"" + ]; + + floating = [ + { + class = "fcitx"; + } + ]; }; # audio = { @@ -93,18 +103,18 @@ rec { }; home.packages = with pkgs; [ - quartus-prime-lite # Intel FPGA design software + # quartus-prime-lite # Intel FPGA design software ]; # NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout # The laptop needs de-DE... # Chinese Input - # i18n.inputMethod.enabled = "fcitx5"; - # i18n.inputMethod.fcitx5.addons = with pkgs; [ - # fcitx5-gtk - # libsForQt5.fcitx5-qt - # fcitx5-chinese-addons - # fcitx5-configtool # TODO: Remove this and set config through HomeManager - # ]; + i18n.inputMethod.enabled = "fcitx5"; + i18n.inputMethod.fcitx5.addons = with pkgs; [ + fcitx5-gtk + libsForQt5.fcitx5-qt + fcitx5-chinese-addons + fcitx5-configtool # TODO: Remove this and set config through HomeManager + ]; }; }