Advertisement
Guest User

nixpkgs introspection

a guest
Nov 5th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. NIX_PATH=darwin-config=/Users/anthony/.nixpkgs/darwin-configuration.nix:/nix/var/nix/profiles/per-user/root/channels:/Users/anthony/.nix-defexpr/channels cat $(nix-build ./lib/introspection.nix --no-out-link) | jq
  2. {
  3. "nixrc.base16.theme": {
  4. "declarations": [
  5. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  6. ],
  7. "description": "Base16 theme name",
  8. "example": "base16-3024",
  9. "loc": [
  10. "nixrc",
  11. "base16",
  12. "theme"
  13. ],
  14. "readOnly": false,
  15. "type": "string"
  16. },
  17. "nixrc.email": {
  18. "declarations": [
  19. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  20. ],
  21. "description": "Email address",
  22. "example": "tim@cool.com",
  23. "loc": [
  24. "nixrc",
  25. "email"
  26. ],
  27. "readOnly": false,
  28. "type": "string matching the pattern .+@.+..+"
  29. },
  30. "nixrc.fullName": {
  31. "declarations": [
  32. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  33. ],
  34. "description": "First and last name",
  35. "example": "Tim Bob",
  36. "loc": [
  37. "nixrc",
  38. "fullName"
  39. ],
  40. "readOnly": false,
  41. "type": "string"
  42. },
  43. "nixrc.uid": {
  44. "declarations": [
  45. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  46. ],
  47. "description": "System user ID",
  48. "example": 501,
  49. "loc": [
  50. "nixrc",
  51. "uid"
  52. ],
  53. "readOnly": false,
  54. "type": "signed integer"
  55. },
  56. "nixrc.user": {
  57. "declarations": [
  58. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  59. ],
  60. "description": "System user",
  61. "example": "timmy",
  62. "loc": [
  63. "nixrc",
  64. "user"
  65. ],
  66. "readOnly": false,
  67. "type": "string"
  68. },
  69. "nixrc.username": {
  70. "declarations": [
  71. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  72. ],
  73. "description": "Public username",
  74. "example": "timsacoolcunt",
  75. "loc": [
  76. "nixrc",
  77. "username"
  78. ],
  79. "readOnly": false,
  80. "type": "string"
  81. },
  82. "nixrc.zsh.theme": {
  83. "declarations": [
  84. "/Users/anthony/_local/repos/betaplum/replicant/home/nixrc.nix"
  85. ],
  86. "default": "amuse",
  87. "description": "ZSH prompt theme",
  88. "example": "amuse",
  89. "loc": [
  90. "nixrc",
  91. "zsh",
  92. "theme"
  93. ],
  94. "readOnly": false,
  95. "type": "string"
  96. }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement