Compare commits
3 commits
4af0755097
...
a7fe95aaba
Author | SHA1 | Date | |
---|---|---|---|
a7fe95aaba | |||
fe9b7e964e | |||
4e09425a11 |
2 changed files with 13 additions and 3 deletions
|
@ -234,11 +234,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1724664098,
|
"lastModified": 1725298871,
|
||||||
"narHash": "sha256-4SgV4jCoN5RffR1Mtn3HI1cjgHmARh+rZrpVlBclj9U=",
|
"narHash": "sha256-+3GjkgCQ41dPiTc8egAs1vznQsj4w1+xE7RrDyXohLM=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NixOS-WSL",
|
"repo": "NixOS-WSL",
|
||||||
"rev": "345dfa06658a37873ca18aa205f409e4aaf1caa6",
|
"rev": "e3328f01dcb99241ac5ae69d9ace84512acca340",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
10
flake.nix
10
flake.nix
|
@ -132,6 +132,12 @@
|
||||||
Alternatively, use:
|
Alternatively, use:
|
||||||
- nix build -L .#packages.x86_64-linux.build_isoimage-pc
|
- nix build -L .#packages.x86_64-linux.build_isoimage-pc
|
||||||
- nix build -L .#build_isoimage-pc
|
- nix build -L .#build_isoimage-pc
|
||||||
|
|
||||||
|
How to use config in an install:
|
||||||
|
Mount partitions.
|
||||||
|
$ sudo nixos-install -v --root /mnt --flake "git+https://git.n2.pm/whovian/nixos_config#CONFIG_NAME"
|
||||||
|
Example for nixosConfigurations.my_nixos_vm:
|
||||||
|
$ sudo nixos-install -v --root /mnt --flake "git+https://git.n2.pm/whovian/nixos_config#my_nixos_vm"
|
||||||
*/
|
*/
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
@ -278,6 +284,10 @@
|
||||||
ohMyZsh = {
|
ohMyZsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "bira";
|
theme = "bira";
|
||||||
|
plugins = [
|
||||||
|
"git"
|
||||||
|
"sudo"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue