Update README.md to include standalone home manager instructions
This commit is contained in:
parent
e494904bcc
commit
043c21cc8b
20
README.md
20
README.md
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
1) Install [NixOS](https://nixos.org/) from an ISO via USB
|
1) Install [NixOS](https://nixos.org/) from an ISO via USB
|
||||||
2) Reboot machine
|
2) Reboot machine
|
||||||
3) Edit /etc/nixos/configuration and add `git` to packages
|
3) Edit `/etc/nixos/configuration` and add `git` to packages
|
||||||
4) Clone this repo
|
4) Clone this repo
|
||||||
5) Copy new `host/` configuration for the new machine
|
5) Copy new `host/` configuration for the new machine
|
||||||
6) Copy /etc/nixos/hardware-configuration to `host/<host>/hardware.nix`
|
6) Copy `/etc/nixos/hardware-configuration` to `host/<host>/hardware.nix`
|
||||||
7) Edit `flake.nix` to point to the new `host`
|
7) Edit `flake.nix` to point to the new `host`
|
||||||
8) `git add .`
|
8) `git add .`
|
||||||
9) Run `sudo nixos-rebuild switch --flake .#nixos`
|
9) Run `sudo nixos-rebuild switch --flake .#nixos`
|
||||||
|
|
@ -17,6 +17,22 @@ https://gist.github.com/FlakM/0535b8aa7efec56906c5ab5e32580adf
|
||||||
# Building NixOS ISO
|
# Building NixOS ISO
|
||||||
`nix build .#nixosConfigurations.live.config.system.build.isoImage`
|
`nix build .#nixosConfigurations.live.config.system.build.isoImage`
|
||||||
|
|
||||||
|
# Using Standalone Home Manager
|
||||||
|
1) Install [Nix](https://nixos.org/) via:
|
||||||
|
|
||||||
|
`
|
||||||
|
sh <(curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install) --daemon
|
||||||
|
`
|
||||||
|
|
||||||
|
2) Create `~/.config/nix/nix.conf` file with the following contents to enable the use of flakes:
|
||||||
|
```
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
```
|
||||||
|
3) Install `git`
|
||||||
|
4) Clone this repo
|
||||||
|
5) Edit `flake.nix` variables as needed
|
||||||
|
6) `home-manager switch --flake .`
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
## Garbage collection
|
## Garbage collection
|
||||||
`nix-collect-garbage -d`
|
`nix-collect-garbage -d`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue