Fedora and Arch btw sicko-tux

    • silent_water [she/her]@hexbear.netM
      link
      fedilink
      English
      arrow-up
      4
      ·
      11 months ago

      just so I know what level of guide you need - have you ever installed arch or one of the other distros that have you set things up yourself before? or have you mostly used gui installers?

        • silent_water [she/her]@hexbear.netM
          link
          fedilink
          English
          arrow-up
          5
          ·
          11 months ago

          ok, it looks like the manual has a graphical install guide. I recommend setting up home-manager for stuff you want set up for your user. programs that need configuration like steam, firefox, etc. are enabled as options in your /etc/nixos/configuration.nix and home-manager configuration files. so you generally just need a programs.steam.enabled = true; in the appropriate file. you can see the available options for nixos here and home-managers options are in the appendix of the manual I linked earlier. simple programs that are just binaries go into either the environment.systemPackages list or into home.packages.

          you generally only want stuff that should be available globally in the system config and most everything else should be installed locally for your user.

          home-manager will even install some firefox addons for you if you want them and it will even let you set up userChrome.css and the like. basically, with nixos, instead of configuring programs/services by mucking with config files all over your system, you just set the appropriate options in the nix config files instead.

          if you get confused at any point in the process, ping me and I’m happy to help. I can also link some tutorials on youtube if that’s helpful.

          • Clever_Clover [she/her]@hexbear.net
            link
            fedilink
            English
            arrow-up
            1
            ·
            10 months ago

            I somewhat disagree on one point there,

            you generally only want stuff that should be available globally in the system config and most everything else should be installed locally for your user.

            since my computer is only for my usage I generally make everything I use available globally just makes things easier imo

            • silent_water [she/her]@hexbear.netM
              link
              fedilink
              English
              arrow-up
              2
              ·
              10 months ago

              it’s a personal preference thing. I try to separate what I need in the system as root for recovery and try to move things I don’t to the user profile. also helps with like, installing my stuff onto another computer that isn’t mine as I can get all my stuff loaded by just loading the home profile on the user, on a system where nixos isn’t running.