I thought I’ll make this thread for all of you out there who have questions but are afraid to ask them. This is your chance!

I’ll try my best to answer any questions here, but I hope others in the community will contribute too!

  • wanghis_khan
    link
    fedilink
    arrow-up
    16
    ·
    3 months ago

    NixOS. I don’t get what it really is or does? It’s a Linux distribution but with ceavets or something

    • exu@feditown.com
      link
      fedilink
      English
      arrow-up
      20
      ·
      3 months ago

      It’s a distribution completely centered around the Nix package manager. This basically allows you to program how your system should look using one programming language. If you want an identical system, just copy that file and you’re set.

      • ReakDuck
        link
        fedilink
        arrow-up
        8
        arrow-down
        1
        ·
        3 months ago

        I remember that thr kernel didn’t had performance flags set and used, making NixOS not a nice Gaming platform.

        Is this true? Can I fix it for myself easily?

        • pineapplelover@infosec.pub
          link
          fedilink
          English
          arrow-up
          7
          ·
          3 months ago

          Easily? I’ve heard it’s really time consuming to get it exactly how you like it but the same could be said about a lot of distros.

        • exu@feditown.com
          link
          fedilink
          English
          arrow-up
          3
          ·
          3 months ago

          Are you talking about that vm.max_memory something?
          Not sure how you’d change it in Nix exactly, but should be simple enough.

        • sxt@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          3 months ago

          Been gaming on nixos for a month or two and haven’t had any issues AFAICT

          • ReakDuck
            link
            fedilink
            arrow-up
            1
            ·
            3 months ago

            I never said it wont have issues. Just a few less FPS without noticing.

      • ReakDuck
        link
        fedilink
        arrow-up
        2
        arrow-down
        7
        ·
        3 months ago

        I remember that thr kernel didn’t had performance flags set and used, making NixOS not a nice Gaming platform.

        Is this true? Can I fix it for myself easily?

      • ReakDuck
        link
        fedilink
        arrow-up
        2
        arrow-down
        7
        ·
        3 months ago

        I remember that thr kernel didn’t had performance flags set and used, making NixOS not a nice Gaming platform.

        Is this true? Can I fix it for myself easily?

      • ReakDuck
        link
        fedilink
        arrow-up
        2
        arrow-down
        8
        ·
        3 months ago

        I remember that thr kernel didn’t had performance flags set and used, making NixOS not a nice Gaming platform.

        Is this true? Can I fix it for myself easily?

    • featured [he/him, comrade/them]@hexbear.net
      link
      fedilink
      English
      arrow-up
      6
      ·
      3 months ago

      Instead of installing packages through a package manager one at a time and configuring your system by digging into individual config files, NixOS has you write a single config file with all your settings and programs declared. This lets you more easily configure your system and have a completely reproducible system by just copying your nix files to another nixos machine and rebuilding.

      It’s also an immutable distribution, so the base system files are only modified when rebuilding the whole system from your config, but during runtime it’s read only for security and stability.