• Unmapped@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    I’m new to NixOS. Do I have to do anything extra to update NixOS? Or do I just update my flake and run nixos-rebuild switch --flake like I normally do to update packages?

    • ⸻ Ban DHMO 🇦🇺 ⸻@aussie.zoneOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      7 months ago

      I’m not sure (I’m about to install it for the first time - on this computer) - According to this all you need to do is:

      # nix-channel --add https://channels.nixos.org/nixos-23.11 nixos
      # nixos-rebuild switch --upgrade
      
      • λλλ@programming.dev
        link
        fedilink
        arrow-up
        0
        arrow-down
        1
        ·
        7 months ago

        What if I just want to upgrade some packages? Like not change channel, but Firefox needs an update? I’m not op and don’t use flakes btw

        • trillian@feddit.de
          link
          fedilink
          arrow-up
          0
          ·
          7 months ago

          If using flakes you could just for instance add another input. You can also set the input URLs to specific states of the nixpkgs repository by eg referencing specific commits. Then, you should be able to just, e.g., pick Firefox from unstable, another package from the current stable channel, and maybe a broken package from a pull request fixing said package.

          If you are not using flakes you can also add system wide channels. IIRC you can then import these channels into your configuration.nix and select packages from the corresponding channels. But here the channels/inputs are not part of configuration itself in contrast to when using flakes.

            • Laser@feddit.de
              link
              fedilink
              arrow-up
              0
              ·
              7 months ago

              I’m a bit confused about what you actually want? Do you just want to update your packages, but stay on the same NixOS version? Just continue like before. Do you want to stay on your current version, but use some packages from the next version? That should also be possible if you somehow include that channel in your configuration.nix (though I don’t know how this would work in practice).

              Personally, I just run with unstable though, then the releases aren’t that important.

              • λλλ@programming.dev
                link
                fedilink
                arrow-up
                0
                arrow-down
                1
                ·
                7 months ago

                I think I thought unstable would mean, well, unstable. Like nightly releases or something. Would you use unstable for Firefox?

              • λλλ@programming.dev
                link
                fedilink
                arrow-up
                0
                arrow-down
                1
                ·
                7 months ago

                Is that the equivalent to apt update and apt upgrade? I don’t want to apt dist-upgrade lol

                • Laser@feddit.de
                  link
                  fedilink
                  arrow-up
                  0
                  ·
                  7 months ago

                  When not using flakes, nixos-rebuild switch --upgrade is equivalent to apt update; apt upgrade. The equivalent to dist-upgrade is nix-channel add $NEW-CHANNEL-URL nixos and then performing a regular update.

                  • λλλ@programming.dev
                    link
                    fedilink
                    arrow-up
                    0
                    arrow-down
                    1
                    ·
                    7 months ago

                    Thanks. I’ve done switch many times after editing my config file. I’ve never added --upgrade!