mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 17:44:06 +05:30
fixed various problems
This commit is contained in:
parent
c33d75a1be
commit
8a145e6580
4 changed files with 3 additions and 4 deletions
|
@ -44,7 +44,7 @@
|
||||||
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
||||||
settings = {
|
settings = {
|
||||||
animations = {
|
animations = {
|
||||||
enabled = "no";
|
enabled = lib.mkForce "no";
|
||||||
};
|
};
|
||||||
|
|
||||||
monitor = [
|
monitor = [
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
wayland.windowManager.hyprland = lib.mkIf config.userSettings.hyprland.enable {
|
||||||
settings = {
|
settings = {
|
||||||
animations = {
|
animations = {
|
||||||
enabled = "no";
|
enabled = lib.mkForce "no";
|
||||||
};
|
};
|
||||||
|
|
||||||
bind = [
|
bind = [
|
||||||
|
|
|
@ -16,7 +16,6 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
userSettings.alacritty.enable = true;
|
userSettings.alacritty.enable = true;
|
||||||
userSettings.kitty.enable = true;
|
userSettings.kitty.enable = true;
|
||||||
userSettings.japanese.enable = true;
|
|
||||||
userSettings.dmenuScripts = {
|
userSettings.dmenuScripts = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dmenuCmd = "fuzzel -d";
|
dmenuCmd = "fuzzel -d";
|
||||||
|
|
|
@ -18,7 +18,7 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
GTK_IM_MODULE = lib.mkForce "wayland";
|
GTK_IM_MODULE = lib.mkForce "";
|
||||||
};
|
};
|
||||||
home.file.".config/fcitx5/config".text = ''
|
home.file.".config/fcitx5/config".text = ''
|
||||||
[Hotkey]
|
[Hotkey]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue