Difference between revisions of "Valid Nix store path names"

From NixOS Wiki
Jump to: navigation, search
(Add warning about the new wiki)
m (rollback unauthorized mass edits)
Tag: Rollback
 
Line 1: Line 1:
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Valid_Nix_store_path_names.}}
 
 
 
All files and folders in <code>/nix/store</code> match the regular expression
 
All files and folders in <code>/nix/store</code> match the regular expression
  

Latest revision as of 11:04, 6 April 2024

All files and folders in /nix/store match the regular expression

[0-9a-f]{32}-[-.+_0-9a-zA-Z]+
  • [0-9a-f]{32} is the hash
  • [-.+_0-9a-zA-Z]+ is the name

See also