diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-09-14 20:35:12 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-09-14 20:35:41 +0200 |
commit | 4b738fc7a922ff7b30135768ee4f469d784b5569 (patch) | |
tree | 1f607504e248bd7e14f25e25a36bfca5e5a39c1f /src/nix/profile-wipe-history.md | |
parent | f359b9981ba3d81e33981018c4bcb83ab45830a3 (diff) |
Add 'nix profile wipe-history' command
Diffstat (limited to 'src/nix/profile-wipe-history.md')
-rw-r--r-- | src/nix/profile-wipe-history.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/nix/profile-wipe-history.md b/src/nix/profile-wipe-history.md new file mode 100644 index 000000000..b4b262864 --- /dev/null +++ b/src/nix/profile-wipe-history.md @@ -0,0 +1,20 @@ +R""( + +# Examples + +* Delete all versions of the default profile older than 100 days: + + ```console + # nix profile wipe-history --profile /tmp/profile --older-than 100d + removing profile version 515 + removing profile version 514 + ``` + +# Description + +This command deletes non-current versions of a profile, making it +impossible to roll back to these versions. By default, all non-current +versions are deleted. With `--older-than` *N*`d`, all non-current +versions older than *N* days are deleted. + +)"" |