fix: make fcitx5's config dir readonly, to avoid other tools overwrite it

This commit is contained in:
ryan4yin
2023-05-08 23:58:55 +08:00
parent 188607b2ae
commit c0b1c5cba1
3 changed files with 11 additions and 12 deletions
+6 -4
View File
@@ -15,10 +15,12 @@
};
home.file.".gtkrc-2.0".source = ./gtkrc-2.0;
home.file.".config/hypr/wallpapers/wallpaper.png".source = ../wallpapers/wallpaper.png;
home.file.".config/fcitx5" = {
source = ./fcitx5;
recursive = true;
};
# need set fcitx5's config dir readonly, to avoid other tools overwrite it.
home.file.".config/fcitx5" = {
source = ./fcitx5;
recursive = true;
};
# allow fontconfig to discover fonts and configurations installed through home.packages
fonts.fontconfig.enable = true;