This commit is contained in:
Lilith 2025-06-26 16:58:58 +02:00
parent 0b0a14fe2c
commit cd44fa3afc
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
6 changed files with 57 additions and 23 deletions

View file

@ -5,6 +5,7 @@
./hyprpaper.nix
./hyprlock.nix
./hyprgrass.nix
./settings.nix
# ./utils.nix
];
@ -37,12 +38,6 @@
exec = [ "[workspace special:keepass silent] keepassxc" ];
windowrule = [
"workspace special:keepass,class:org.keepassxc.KeePassXC,title:^(.*)(KeePassXC)(.*)$"
"workspace unset,class:org.keepassxc.KeePassXC,title:Unlock Database - KeePassXC"
"noanim, class:^ueberzugpp_(.*)$"
];
workspace = [
"special:keepass,gapsout:45"
"special:magic,gapsout:45"

View file

@ -0,0 +1,19 @@
{ ... }:
{
wayland.windowManager.hyprland.settings.windowrule = [
"workspace special:keepass,class:org.keepassxc.KeePassXC,title:^(.*)(KeePassXC)(.*)$"
"workspace unset,class:org.keepassxc.KeePassXC,title:Unlock Database - KeePassXC"
"noanim, class:^ueberzugpp_(.*)$"
"float,^(awakened-poe-trade)$"
"noblur,^(awakened-poe-trade)$"
"noborder,^(awakened-poe-trade)$"
"stayfocused,^(steam_app_238960)$"
];
wayland.windowManager.hyprland.settings.bind = [
"SHIFT,Space,pass,^(awakened-poe-trade)$"
"CTRL,D,pass,^(awakened-poe-trade)$"
"CTRL ALT,D,pass,^(awakened-poe-trade)$"
];
}

View file

@ -1,11 +1,29 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ piper ];
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-gtk
fcitx5-chinese-addons
fcitx5-nord
];
enable = true;
type = "fcitx5";
fcitx5 = {
addons = with pkgs; [
fcitx5-gtk
fcitx5-chinese-addons
fcitx5-nord
];
ignoreUserConfig = true;
settings = {
inputMethod = {
GroupOrder."0" = "Default";
"Groups/0" = {
Name = "Default";
"Default Layout" = "us";
DefaultIM = "pinyin";
};
"Groups/0/Items/0".Name = "keyboard-us";
"Groups/0/Items/1".Name = "pinyin";
};
};
};
};
}