Add some more notes for possible future use.

This commit is contained in:
Whovian NTSN 2024-05-23 05:16:16 -04:00
parent 9dea323402
commit 8c0f3b5f05
1 changed files with 40 additions and 1 deletions

View File

@ -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/)
### 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:
```bash
$ sudo nix-channel --list
nixos https://nixos.org/channels/nixos-23.11
nixos-wsl https://github.com/nix-community/NixOS-WSL/archive/refs/heads/main.tar.gz
```