Add some more notes for possible future use.
This commit is contained in:
parent
9dea323402
commit
8c0f3b5f05
1 changed files with 40 additions and 1 deletions
41
README.md
41
README.md
|
@ -15,10 +15,49 @@ If you have suggestions on "fixing" or "cleaning up" my configurations, please a
|
||||||
|
|
||||||
- [[githubL:ashebanow Starred - Example Nix Configs] "These are other people's nix configs I've found useful, informative, and/or inspirational."](https://github.com/stars/ashebanow/lists/example-nix-configs/)
|
- [[githubL:ashebanow Starred - Example Nix Configs] "These are other people's nix configs I've found useful, informative, and/or inspirational."](https://github.com/stars/ashebanow/lists/example-nix-configs/)
|
||||||
|
|
||||||
|
### Extra notes for possible future use:
|
||||||
|
```nix
|
||||||
|
virtualisation.docker = {
|
||||||
|
enableOnBoot = true;
|
||||||
|
autoPrune.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
wsl = {
|
||||||
|
# Enable integration with Docker Desktop (needs to be installed)
|
||||||
|
docker-desktop.enable = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.shells = [pkgs.zsh];
|
||||||
|
|
||||||
|
nix = {
|
||||||
|
settings = {
|
||||||
|
access-tokens = [
|
||||||
|
"github.com=${github_token-variable}"
|
||||||
|
"gitlab.com=OAuth2:${gitlab_token-variable}"
|
||||||
|
];
|
||||||
|
accept-flake-config = true;
|
||||||
|
auto-optimise-store = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
registry = {
|
||||||
|
nixpkgs = {
|
||||||
|
flake = inputs.nixpkgs;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
nixPath = [
|
||||||
|
"nixpkgs=${inputs.nixpkgs.outPath}"
|
||||||
|
];
|
||||||
|
|
||||||
|
gc = {
|
||||||
|
automatic = true;
|
||||||
|
options = "--delete-older-than 7d";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
### Notes:
|
### Notes:
|
||||||
```bash
|
```bash
|
||||||
$ sudo nix-channel --list
|
$ sudo nix-channel --list
|
||||||
nixos https://nixos.org/channels/nixos-23.11
|
nixos https://nixos.org/channels/nixos-23.11
|
||||||
nixos-wsl https://github.com/nix-community/NixOS-WSL/archive/refs/heads/main.tar.gz
|
nixos-wsl https://github.com/nix-community/NixOS-WSL/archive/refs/heads/main.tar.gz
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue