• 3 Posts
  • 7 Comments
Joined 5 months ago
cake
Cake day: January 26th, 2024

help-circle


  • I lookup for the package here https://search.nixos.org/packages? I can find multiple versions.

    It’d help if you mentioned the package itself.

    two that sound right, two sound like rubbish and one is a plugin for something. How do I decide which of the two good sounding packages I should choose

    Let’s say you wanted to install neovim, there are many similar packages available, viz. neovim, neovim-gtk, neovim-qt, etc. they all have description and most packages have link to homepage, hinting their purpose. But you can ignore *-unwrapped packages if you are not packaging yourself.

    What if the package or even both not work?

    This seems like packaging problem, most of the time it works. If not, notifying the maintainers via issues could help or you’ll have to fix it for yourself or use other package manager.

    How do I know that it is up to date?

    Go to package homepage if available and check their releases and compare them with version shown on search.nixos.org. If homepage is not available, go to source and get the url from src attribute and check the original source and compare with version shown on search.nixos.org.

    How do I know that it will be updated in a timely manner? Can I update it?

    You can check the commit history for the “source” file. Also you can update it yourself. If you’re lucky and know nix, then you’ll only have to update the url/version and hash like here.

    is there a guideline for using nix packages?

    you can checkout https://nixos.wiki/wiki/Nix_command and may be https://nix.dev/manual/nix/2.18/. Unfortunately I can’t find an comprehensive guideline for begineers. Others can chime in if they know.


    Notice about experimental features nix-command and flakes.

    If you see documentations other official sources, most often they’ll use flakes/nix-command but since they’re not officially stabilised (not as in broken) yet, documentation/blogs may vary. This can be quite frustrating if you don’t know about it.

    Without flakes/nix-command, to install (let’s say) neovim on non-NixOS distro nix-env -iA nixos.neovim, you can see that when search on search.nixos.org and click on the required packages, then choose one of the three tabs: nix-env, nix-shell or NixOS-configuration.

    nix-env installs the packages in your user environment, you can rollback and stuff.

    nix-shell downloads the package and spawns a new shell (your shell prompt changes to [nix-shell]:) and you can use the package there and package won’t be installed. This is good for trying packages before installing.

    For using flakes/nix-command, first you’ll have to enable them otherwise you’ll get this error

    $ nix shell nixpkgs#neovim
    error: experimental Nix feature 'nix-command' is disabled; use '--extra-experimental-features nix-command' to override
    

    you can append --extra-experimental-features nix-command to the above command nix shell nixpkgs#neovim --extra-experimental-features nix-command and it’ll work temporarily.

    OR

    Append this line experimental-features = nix-command flakes to /etc/nix/nix.conf to enable nix-command and flakes.

    nix shell nixpkgs#neovim is equivalent to nix-shell -p neovim though in the former it’s using nixpkgs-unstable branch of github.com/nixos/nixpkgs. nix profile install nixpkgs#neovim is equivalent to nix-env -iA nixos.neovim though it’s said to stop using nix-env

    PS: This could be more comprehensive, my writing skills are shit lol


  • What do you like about ansible? I guess it abstracts away the need to check for OS/init system? How else does it help in place of shell scripts?

    Also after using NixOS, it’s amazing what NixOS does and disappointing that ansible is not so great for deterministic config [1], its more or less a batch of commands executed together. The closest thing, to NixOS, I’ve been able to achieve is load a variables file in playbook.yml and enable/disable service or install/purge pkg based on variables declared. I might be nitpicking/wrong given I’ve not been using long enough but directory layout is kinda too verbose. I say that because it’ll get really messy very quickly when writing modules for more services. NixOS is great, you only have to have configuration.nix or flake.nix+flake.lock too (if using flakes) and rest you can import however you like.


    1. I know that nix stores its state in /nix and ansible doesn’t have any such assumption about the target host so it can’t rollback to previous state ↩︎



  • You can see all registers in use with :registers, to paste from a register say "2 in insert mode use key combination <ctrl-r>2 or in normal mode "2p. You can check out more in :help registers. Unnamed register or "" is the system clipboard I think. To copy texts in a register you can prepend yank (/delete/cut, etc.) with that register "_ (for black hole register[1]) This is for neovim. Have keybinds for them and there saved you a plugin :D


    1. Text yanked in this register is gone, i.e. it’s not saved in any register. ↩︎