blob: b37889ed2c97cd839aee582d2f34ff61d1c9e46f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Install
## Hotaru
```
$ sudo apt update
$ sudo apt upgrade
$ ./bootstrap hotaru
$ sudo adduser $(whoami) docker
$ cargo install alacritty
$ cd ~/src/reparojson
$ cargo install --path .
```
## PC 168
```
$ brew update
$ brew upgrade
$ brew install libiconv
$ ./bootstrap pc168
$ brew install --cask alacritty
# Latest version: https://github.com/adobe-fonts/source-han-code-jp/releases/latest
$ curl -fLo ~/Library/Fonts/SourceHanCodeJP.ttc --create-dirs https://github.com/adobe-fonts/source-han-code-jp/releases/download/2.012R/SourceHanCodeJP.ttc
$ sudo atsutil databases -remove
$ /usr/local/opt/ncurses/bin/infocmp tmux-256color > /var/tmp/tmux-256color.info
$ tic -xe tmux-256color /var/tmp/tmux-256color.info
# Restart your machine.
```
# Update
* `nix flake update`
* `home-manager switch --flake ".#<host>"`
# Garbage Collection
* `home-manager generations`
* `home-manager expire-generations TIMESTAMP`
* `nix profile wipe-history`
* `nix store gc`
|