• blotz@lemmy.world
    link
    fedilink
    arrow-up
    37
    ·
    edit-2
    5 months ago

    What’s up with the ux design of nix? I get it’s made for advanced users but still. I’m reading through this guide and man it’s convoluted.

    The different ways of installing packages. Either through editing the configuration.nix or running a command. The weird inconsistency of nix commands. nix-env -iA to install and nix-env --uninstall to uninstall. Then updating uses nix-channel --update but upgrade uses nixos-rebuild switch --upgrade. All this to use the package manager. Also haven’t even mentioned flakes or home manager.

    It’s a cool OS, but the UX really needs work imo.

    [Edit] I do wanna add something else too because I feel like my point isn’t getting across.

    It’s okay to have a complicated ui. Especially if your target audience are tech-savvy. But even tech-savvy people have to start as new users. A tech-savvy new user isn’t going to know what the best practices are. Being able to anticipate the steps for installing a package is important for ux. If the commands for installing packages isn’t cohesive/intuitive, then the user has to spend more time looking for guides and learning how to use the software.

    People also mentioned a new command in the works. This is great! However, these current commands are being recommended through blogs and nix. New users won’t know about this new command.

    • pr06lefs@lemmy.ml
      link
      fedilink
      arrow-up
      20
      ·
      5 months ago

      There is controversy in the nix world because nix flakes were (some say) merged without proper vetting first. OG nix diehards don’t want to taint nix documentation with ‘experimental’ flakes. But probably the majority of nix users are all in on flakes. So you have documentation from the OG camp that doesn’t include flakes, and you have innumerable unofficial guides for the flakes way. This on top of the quirkiness of nix the language and the multiple ways to do things. Unfortunate.

      IMO nix-env was a mistake. It feels like an imperative package manager which may be comfortable to new users who are used to apt or similar. But really what you should be doing on nix is maintaining *.nix files which document/specify your system setup, and nixos-rebuild to update your system to that configuration. Similarly, nix channels are an imperative holdover, which can be done away with if you use flakes, which results in your current nixpkgs version being documented in a system level flake.lock file.

      • blotz@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        5 months ago

        I think both nix-env and flakes are designed with making package management easier. Nix-env tries to make it intuitive and familiar for new users. Flakes improve package management by simplifying the configuration.

        Personally I would love to see syntax highlighting, language server, code completion. Maybe all in a dedicated application which is configured to give the easiest experience for new users. If nix is intended to be managed through config files, then the experience of writing a config should be as easy as possible.

        • itslilith@lemmy.blahaj.zone
          link
          fedilink
          arrow-up
          5
          ·
          5 months ago

          Syntax highlighting, LSP and code formatting work flawlessly for me using Helix, and therefore should on any editor that implemented LSP

        • pr06lefs@lemmy.ml
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          5 months ago

          The intent of nix-env was to make it easier, but the effect was to push some of your system state into a shadowy ‘env’ realm that is not managed by your *nix files. Same with channels - its state that isn’t in your configuration.nix.

          To me the whole point is to have all your state in some files you can check in to version control, and use to reproduce your system.

          Agree it would be cool to have a way to edit nix files that would give you all the args to functions, code completion etc. You do get some of that with the nix repl. Would be nice to even have a GUI for selecting packages for those that don’t “do” text editing.

          I’m using nixd for a nix language server, but haven’t seen a lot of benefit so far to be honest. I think part of the reason is nixpkgs isn’t pulled in until runtime, so most things are undefined as far as the lsp is concerned. Haven’t put a lot of time into it, there may be ways to make it more useful.

    • rutrum@lm.paradisus.day
      link
      fedilink
      English
      arrow-up
      7
      ·
      5 months ago

      They have resolved this exact problem. There is an “experimental” cli tool that fixes a lot of your complaints about nix-env, nix-channel, etc. Itcs wrapped together with “flakes”. This newer feature is a little different, and working with or without flakes segments the community AND the types of articles about nix, like this one.

      As far as I know though, nixos related thing still have a bizarre set of commands, and even with flakes “nixos-rebuild switch --upgrade” is still how you switch configs.

      And as far as installation goes, using nix-env -iA really is a bad practice. Thats installing something ad hoc like you would in any other package manager. That defeats the point of nixos, where your configuration file explicitly defines all the packages you need installed, and nothing else. Nix will remove any packages you didnt specify.

      • blotz@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        5 months ago

        Oh that’s good that they are addressing those issues with a new command. Hopefully it gets into stable soon.

        Might be that nix-env -iA is bad practice! I’m strictly talking about ux design here and nix-env -iA is being recommend by blogs and nix themselves. (Nixpkgs tells you how to install using nix-env -iA)

        A new user isn’t going to know what bad practice is.

        • MaliciousKebab@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          5 months ago

          It actually recommends using nix-env -i, which is even worse because with that command it searches the whole repository instead of just getting the correct attribute on nixpkgs. It takes half a minute to run the command, it’s insane.

    • mvirts@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      5 months ago

      I do think it’s important to emphasize the difference between installing software in user environments and system wide, which is why the tool is named nix-env. System packages must be installed via the nixos configuration file and a rebuild.

      To me the biggest missing piece for new users is a tool to help manage your system configuration and reduce the frustration of having to constantly look up nix syntax or nixpkgs quirks. Maybe thinking of it as a nixos/nix IDE? Also a polished distribution built on nixos would be a good starting point (and easy to do, I didn’t realize I could just copy someone else’s configuration until well after I had my system working well enough)

      The other thing that got me starting out is the need to garbage collect old packages. It’s not strictly necessary if you have a large enough disk, but it took me several iterations of filling my root partition before I figured out how to properly clean up old generations.

        • mvirts@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          5 months ago

          I think ultimately

          Sudo nix-collect-garbage --delete-old

          Is my go-to command. For a while I was looking at generations manually, but now I just wait a while (days, a few reboots, or until I need more space) to run this after changing things in case the new stuff is broken.

          I think running this as my normal user cleans out old env generations… But I’m not 100% sure.

    • MadMaurice@discuss.tchncs.de
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      5 months ago

      Imho I wouldn’t bother with nix-env or nix profile. It just creates a secondary list of packages that needs to be maintained and it’s cumbersome to do so. There’s nix-shell or nix shell if you need a package temporarily and there’s your configuration.nix or flake for everything else.

      Side note: nix profile at least has consistent commands: install/remove/upgrade

    • million@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      5 months ago

      After trying out Nix as a package manager I realized I have a pretty different world view than the makers of Nix. I agree with the end goal but how they are trying achieve it is just alien to me. The nix command line is just downright user hostile.

      I am personally hoping that someone else takes a stab at the Nix concept but have accepted Nix isn’t for me.

    • filister@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      5 months ago

      The errors are also pretty terrible, usually the thing that interests you is buried under a lot of text that makes troubleshooting a real pain.

      • AItoothbrush@lemmy.zip
        link
        fedilink
        English
        arrow-up
        4
        ·
        5 months ago

        Yeah because when you make an error it causes a snowball affect and it shows you too little information but when you look at the trace its a wall of errors.

      • callyral [he/they]@pawb.social
        link
        fedilink
        English
        arrow-up
        2
        ·
        5 months ago

        oof, yeah.

        i had a syntax error in my dotfiles that took me two hours to solve.

        it was a missing semicolon that was wayyy above where the error said it was. it didn’t even say missing semicolon, instead saying unexpected '}' on line ...

      • wewbull@feddit.uk
        link
        fedilink
        English
        arrow-up
        1
        ·
        5 months ago

        Yep, today I had a typo in a package name, and it cascaded into a syntax error. The syntax was absolutely fine.

    • CrabAndBroom@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      ·
      5 months ago

      I’ve read so many things that try to explain what flakes are, and for the life of me I still don’t understand what they are or what they’re for lol.

      • Laser@feddit.de
        link
        fedilink
        arrow-up
        1
        ·
        5 months ago

        They’re not that different from the classic nix files. Their main difference is that their inputs are always well-defined (as opposed to a channels registry, i.e. you can get totally different systems by reapplying a configuration when you change channels which doesn’t change your nix file at all). A configuration is always exactly described by a flake.nix and flake.lock.

        I mean there is more to it, but this is the primary motivation. What you would normally put into use case specific nix files goes into a flake’s output section. The stuff in your input sections is what you can use in there.

  • fraichu@lemmy.ml
    link
    fedilink
    arrow-up
    29
    ·
    5 months ago

    Since I’m already a NixOS user, I thought to check out Series 4. One of the steps was “install flatpak”

    My disappointment is immeasurable and my day is ruined.

    • callyral [he/they]@pawb.social
      link
      fedilink
      English
      arrow-up
      6
      ·
      5 months ago

      “install flatpak”

      why would someone do that in NixOS? nix has a lot of packages and using flatpaks imperatively would lead to less reproducibility

      • null@slrpnk.net
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        5 months ago

        My usecase is that I want to build a rock-solid workstation laptop for my non-tech-savvy family member.

        I configure all the basics in .nix files, and then from there, they can install Flatpak from the software center, like they are used to doing.

        Then I can just do a rebuild switch when I see them, make sure it’s all working, and then trust that they probably won’t break the system in-between.

        Edit: to be clear, in my own config, if it’s not reproducible, I’m actively working to fix that.

        • Laser@feddit.de
          link
          fedilink
          arrow-up
          3
          ·
          5 months ago

          I mean why would you be fully against flatpak? I use NixOS without it and always packaged natively on Arch, but especially when upstream offers flatpak, it makes sense to enable it. Keeps the user-facing programs up to date and somewhat sandboxed while you can have a stable release beneath it. Especially if the system’s actual users aren’t that tech-savvy.

          Stuff on unstable tends to break, especially electron-dependent derivations. Stable doesn’t always have the latest and greatest. Flatpak seems like a good compromise for desktop applications in some cases.

          • null@slrpnk.net
            link
            fedilink
            arrow-up
            1
            ·
            5 months ago

            Well the only real reason when it comes to Nix is that they aren’t declarative. For a lot of Nix users, the ability to describe every bit of software and all their settings in one giant config file is the draw. Not necessarily anything against Flatpaks themselves.

            But I agree, I like being able to mix the two where it makes sense.

            • Laser@feddit.de
              link
              fedilink
              arrow-up
              1
              ·
              5 months ago

              NixOS itself by default isn’t fully declarative anyways, nix-env for example is imperative and very comparable to flatpak regarding applications.

              I welcome the efforts to move away from all imperative bits in NixOS though. My point was rather not to dismiss an article on NixOS for mentioning flatpaks.

              • null@slrpnk.net
                link
                fedilink
                arrow-up
                1
                ·
                5 months ago

                Flakes takes care of a lot of the imperative bits, but some people are wary of them since they’re marked experimental.

                • Laser@feddit.de
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  edit-2
                  5 months ago

                  I don’t think flakes can do much more declarative than “legacy” nix, rather they increase reproducibility and purity. Also their tooling doesn’t offer imperative stuff by default, but I’m not sure they cover use cases previously solved imperatively. E.g. I don’t think you can install user software through a flake. Sure you can create shells with software available, but that is also possible without flakes.

                  Maybe my understanding here is wrong though.

        • λλλ@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          5 months ago

          I thought about doing that but updating nixos confuses me. Does nixos-rebuild switch pull new packages? To my understanding there is a file that saves all currently installed versions of packages and switch only adds new things but wouldn’t update packages.

          Like, if I want to update Google Chrome. Doing switch wouldn’t change anything if the config hasn’t changed, right?

          • null@slrpnk.net
            link
            fedilink
            arrow-up
            3
            ·
            edit-2
            5 months ago

            I believe that’s correct – if nothing has changed from your last generation, then the new generation will be identical. But if something has changed, it will do a bunch of duplicating and remapping symlinks in the Nix store to ensure that everything plays nicely together and that you can rollback to a previous generation if needed.

            So if you do a rebuild switch regularly, you will end up with gigs worth of old “copies” of things that aren’t being referenced in your current generation.

            That’s what nix-collect-garbage handles – once you know your current generation is working well, you collect the garbage and recover that space, at the expense of not being able to roll back.

            That’s why I think building a core system with NixOS and then having user software come from Flatpak is a nice combo for simple workstation that won’t update and bork itself, leaving my grandpa without a laptop until I can come take a look.

            Edit: To clarify, nixos-rebuild-switch won’t update your Flatpaks at all – just the Flatpak service

            • λλλ@programming.dev
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              5 months ago

              That makes a lot of sense. I can setup their computer with nixos and stuff that needs to be updated regularly (like a web browser) can be flatpak which should be more stable too.

              Then flatpak update would get them updated without rebuilding the whole OS.

              My grandparents have been rocking Linux Mint for a few years. I have managed Chrome through Flatpak since I discovered that was possible on Mint. I’ve been flirting with the idea of having NixOS instead so I don’t have to remember what I’ve configured in the past. I’m not 100% sure now though :-P

    • lemmy_user_838586@lemmy.ml
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      5 months ago

      Ahh, itsfoss.com. they had some article on “being a supercharged Joplin user” or some nonsense and suggestion 3 or 4 was “Create a notebook”… Really being a power user when you’re utilizing the most basic functionality the app was created for…

  • jenny_ball@lemmy.world
    link
    fedilink
    arrow-up
    8
    ·
    5 months ago

    everyone here will hate me for bringing this up, but i tried to install nixos on hyperv, but wasn’t able to.