For me it must be kde plasma 6 and the wayland driver for wine.

Edit: I made the question gendered by using the word guys. I’ve fixed my mistake.

  • refreeze@lemmy.world
    link
    fedilink
    arrow-up
    10
    arrow-down
    2
    ·
    9 months ago

    Continued increase in Nix adoption. It seems like 2023 saw a real shift in favour of immutable solutions in general and Nix in particular.

    • Unsafe@lemmy.today
      link
      fedilink
      arrow-up
      5
      arrow-down
      6
      ·
      9 months ago
      • No proper selinux profiles
      • Rebuild after every config change
      • SystemD bloat
      • FHS incompatibility
      • Bash engraved into the system
      • Dozens of broken packages in the repo
        • Unsafe@lemmy.today
          link
          fedilink
          arrow-up
          5
          arrow-down
          7
          ·
          9 months ago

          SystemD just happened to implement feature complete cronie(systemd-timers), grub(gummiboot), dhcpcd(resolveD), mdev(udev) equivalents. It doesn’t mean it’s bloated. Right?

          • meteokr@community.adiquaints.moe
            link
            fedilink
            arrow-up
            5
            arrow-down
            1
            ·
            9 months ago

            Of course, those are discreet projects that can be picked out when there is a use case for them. Discreet solutions to problems is the hallmark of Unix systems isn’t it? Any distro maintainer can choose to enable these if they want, as is the admin.

      • meteokr@community.adiquaints.moe
        link
        fedilink
        arrow-up
        3
        arrow-down
        1
        ·
        9 months ago

        Rebuild after every config change

        This is pretty much the whole point of using nix. The system is declarative, so it rebuilds the parts that changed, because all changes are imperitive and atomic. If it didn’t rebuild your sshd config and restart the service when you changed the accepted key types, what would even be the point? Coming from a huge ansible background nix feels like ansible on steroids.

        FHS incompatibility

        Why does this matter? Nix manages all your system binaries and PATHs just like any other distro, so why would it matter where they are kept? Programs like type/which still work exactly the same, and nix imports your dependencies exactly as described in the build scripts when you need to compile something locally.

        Its honestly refreshing to see a distro really pushing innovation like this by taking advantage of everything Unix systems are built with and doing something this cool.