Adjust `README.md` notes some more.

This commit is contained in:
Whovian NTSN 2024-05-23 05:30:40 -04:00
parent 250337e321
commit 24d03404be
1 changed files with 5 additions and 1 deletions

View File

@ -16,10 +16,13 @@ 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/)
### Notes for possible future use: ### Notes for possible future use:
I really really should look further into these before actually using them.
```nix ```nix
virtualisation.docker = { virtualisation.docker = {
enableOnBoot = true; enableOnBoot = true;
autoPrune.enable = true; autoPrune = {
enable = true;
};
}; };
wsl = { wsl = {
@ -44,6 +47,7 @@ nix = {
flake = inputs.nixpkgs; flake = inputs.nixpkgs;
}; };
}; };
nixPath = [ nixPath = [
"nixpkgs=${inputs.nixpkgs.outPath}" "nixpkgs=${inputs.nixpkgs.outPath}"
]; ];