23 lines
606 B
Markdown
23 lines
606 B
Markdown
|
## Installation
|
||
|
|
||
|
```bash
|
||
|
# nix
|
||
|
sh <(curl -L https://nixos.org/nix/install)
|
||
|
|
||
|
sudo echo 'experimental-features = nix-command flakes' >> /etc/nix/nix.conf
|
||
|
sudo echo 'keep-derivations = true' >> /etc/nix/nix.conf
|
||
|
sudo echo 'keep-outputs = true' >> /etc/nix/nix.conf
|
||
|
|
||
|
# home-manager
|
||
|
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
|
||
|
nix-channel --update
|
||
|
nix-shell '<home-manager>' -A install
|
||
|
|
||
|
# Configuration
|
||
|
cd ~/.config
|
||
|
git clone git@github.com:nifoc/dotfiles.git nixpkgs
|
||
|
home-manager switch --flake ~/.config/nixpkgs/#$USER
|
||
|
|
||
|
sudo cachix use nix-community
|
||
|
```
|