Skip to content

Commit

Permalink
fix: fcitx5
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan4yin committed May 7, 2023
1 parent 1b9801c commit 78e6200
Show file tree
Hide file tree
Showing 6 changed files with 3,565 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ After installed NixOS with `nix-command` & `flake` enabled, you can deploy this

```bash
# deploy my test configuration
sudo nixos-rebuild switch .#nixos-test
sudo nixos-rebuild switch --flake .#nixos-test


# deploy my PC's configuration
rm -rf ~/.config/fcitx5/profile # this file may be covered by fcitx5, so remove it first
sudo nixos-rebuild switch .#msi-rtx4090
rm -rf ~/.config/fcitx5/profile ~/.config/mimeapps.list # this file may be covered by fcitx5, so remove it first
sudo nixos-rebuild switch --flake .#msi-rtx4090
```

## Other Interesting Dotfiles
Expand Down
5 changes: 4 additions & 1 deletion home/hyprland/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
};
home.file.".gtkrc-2.0".source = ./gtkrc-2.0;
home.file.".config/hypr/wallpapers/wallpaper.png".source = ../wallpapers/wallpaper.png;
home.file.".config/fcitx5/profile".source = ./fcitx5-profile;
home.file.".config/fcitx5" = {
source = ./fcitx5;
recursive = true;
};

# allow fontconfig to discover fonts and configurations installed through home.packages
fonts.fontconfig.enable = true;
Expand Down
Loading

0 comments on commit 78e6200

Please sign in to comment.