blob: 23c16e891e6699b6fd9f75b3982ecbc2dd2343fd (
plain) (
blame)
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
|
# NIX Config
My Personal NixOS Flake.
# NixOS
## Installing
```
nixos-install --flake . #HOST
```
## Updating
```
nix flake update
nixos-rebuild switch --flake . #HOST
```
# Non-Nixos
## Installing
```
nix build .#homeManagerConfigurations.HOST.activationPackage
./result/activate
```
## Updating
```
home-manager switch --flake .#HOST
```
# ISO
## Building
```
nix build .#isoConfigurations.HOST.config.system.build.isoImage
```
|