109 Matching Annotations
  1. Nov 2024
  2. Aug 2023
    1. funny how all comments were censored as "off topic", because some idiots clicked on the "report" button.

      github takes such "reports" serious. no surprise, because either github is already subverted by the woke mob, or github is afraid of the woke mob.

      the linked thread on discourse.nixos.org was censored by the nixos admins

      here are 2 archived versions, but discourse is hard to archive:

      https://web.archive.org/web/20230222112654/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      https://web.archive.org/web/20230222181834/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      see also:

      https://github.com/milahu/hate-maintainers-censored

      my censored "hate-maintainers" is hosted on the darknet:

      http://it7otdanqu7ktntxzm427cba6i53w6wlanlh23v5i3siqmos47pzhvyd.onion/milahu/hate-maintainers

      http://gg6zxtreajiijztyy5g6bt5o6l3qu32nrg7eulyemlhxwwl6enk6ghad.onion/milahu/hate-maintainers

    1. this thread was censored by the nixos admins

      here are 2 archived versions, but discourse is hard to archive:

      https://web.archive.org/web/20230222112654/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      https://web.archive.org/web/20230222181834/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      see also:

      https://github.com/milahu/hate-maintainers-censored

      my censored "hate-maintainers" is hosted on the darknet:

      http://it7otdanqu7ktntxzm427cba6i53w6wlanlh23v5i3siqmos47pzhvyd.onion/milahu/hate-maintainers

      http://gg6zxtreajiijztyy5g6bt5o6l3qu32nrg7eulyemlhxwwl6enk6ghad.onion/milahu/hate-maintainers

    1. this thread was censored by the nixos admins

      here are 2 archived versions, but discourse is hard to archive:

      https://web.archive.org/web/20230222112654/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      https://web.archive.org/web/20230222181834/https://discourse.nixos.org/t/where-can-i-find-the-context-when-a-user-is-banned/25674

      see also:

      https://github.com/milahu/hate-maintainers-censored

      my censored "hate-maintainers" is hosted on the darknet:

      http://it7otdanqu7ktntxzm427cba6i53w6wlanlh23v5i3siqmos47pzhvyd.onion/milahu/hate-maintainers

      http://gg6zxtreajiijztyy5g6bt5o6l3qu32nrg7eulyemlhxwwl6enk6ghad.onion/milahu/hate-maintainers

  3. Mar 2023
  4. Jan 2023
  5. Dec 2022
  6. Nov 2022
  7. Oct 2022
  8. Aug 2022
  9. Jun 2022
  10. May 2022
  11. Apr 2022
  12. Mar 2022
  13. Feb 2022
  14. Jan 2022
  15. Oct 2021
  16. Jul 2021
  17. Jun 2021
  18. May 2021
  19. Feb 2021
    1. NIX_PATHA colon-separated list of directories used to look up Nix expressions enclosed in angle brackets (i.e., <path>). For instance, the value

      It would be helpful to

      1. formally describe the formats for NIXPATH, and
      2. note the allowed angle bracket syntax accordingly

      <path> will work with the prefixless format, but not with the prefixed one, and it may be helpful to spell this out explicitly.

      0 [14:16:19] nix repl
      Welcome to Nix version 2.3.10. Type :? for help.
      
      nix-repl> :l <nixpkgs/doc>  
      Added 40 variables.
      
      nix-repl> :l <doc>
      error: file 'doc' was not found in the Nix search path (add it using $NIX_PATH or -I)
      

      I always saw a NIXPATH used with the prefix syntax so far:

      $ echo $NIX_PATH
      nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root
      

      but NIX_PATH documentation shows that the prefixless format is also valid.

      $ export NIX_PATH=/home/toraritte:/nix/var/nix/profiles/per-user/root/channels/nixos
      
      $ printenv NIX_PATH
      /home/toraritte:/nix/var/nix/profiles/per-user/root/channels/nixos
      
      $ nix repl
      Welcome to Nix version 2.3.10. Type :? for help.
      
      nix-repl> :l <nixpkgs>
      Added 12439 variables.
      
  20. Aug 2020
    1. > (square: (x: y: square x + square y) 3 7) (x: x*x)58

      This can be written up in many other forms, plus the possibility of currying deserves to be pointed out:

      $ nix repl
      nix-repl> (sq: (x: y: sq y + sq x) 2 7) (x: x*x)
      53
      
      nix-repl> (sq: (x: y: sq y + sq x)) (x: x*x)     
      «lambda @ (string):1:11»
      
      nix-repl> (sq: (x: y: sq y + sq x)) (x: x*x) 2
      «lambda @ (string):1:14»
      
      nix-repl> (sq: (x: y: sq y + sq x)) (x: x*x) 2 7
      53
      
      nix-repl> (sq: x: y: sq y + sq x) (x: x*x) 2 7   
      53
      
  21. Jul 2020
  22. Jun 2020
    1. Why is Nix written in C++ rather than a functional language like Haskell?[ ] Mainly because Nix is intended to be lightweight, easy to learn and portable (zero dependencies). Since 24. April 2017 thanks to Shea Levy and the crowdfunding of 54 community members, nix does not have Perl as dependency anymore.

      There is hnix that is still actively developed (as of 2020/06/21).

    1. The easiest way I've found to manage that is to copy hardware-configuration.nix and a minimal version of configuration.nix and import it into the NixOps config for the corresponding machine. (I keep them in a git submodule, but keeping them in the same repo could also make sense.) 1 Pick your reaction

      If I understood it correctly, take the hardware-configration.nix from the target machine, and put it into the NixOps config.

      Also relevant: Minimal NixOS config for Nixops deployment (discourse)

  23. Feb 2020
  24. Jan 2020
  25. Nov 2019
  26. Sep 2019
  27. Aug 2019
  28. Jul 2019
  29. Jun 2019
  30. Mar 2019
  31. Feb 2019
  32. Dec 2018
  33. Oct 2018
  34. Sep 2018
  35. Aug 2018
  36. Jul 2018
  37. Jun 2018
  38. Dec 2017