this post was submitted on 21 Oct 2025
760 points (98.6% liked)

linuxmemes

27845 readers
460 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     

    I'm really enjoying Pop!_OS, but their logo could use some workshopping imo. I've been considering trying an upstream distro as an educational experience anyway, yet somehow this is what I'm feeling excited about. I don't know why - nobody but me is ever going to see my neofetch output. Lol

    (NixOS isn't really in the running... I just wanted a 3rd example and like the logo)

    you are viewing a single comment's thread
    view the rest of the comments
    [–] varnia@lemmy.blahaj.zone 24 points 1 week ago (2 children)

    How do you even compete with a snowflake made of lambdas? NixOS could be your final distro.

    Damn, I didn't notice they were made out of lambdas. Guess I need to switch to NixOS

    [–] monogram@feddit.nl 8 points 1 week ago (2 children)

    Until you find out that the configuration file syntax is like swift and Haskell had a baby.

    [–] mariusafa@lemmy.sdf.org 2 points 6 days ago (1 children)

    Or you could just have a scheme configuration where lambas make sense

    [–] varnia@lemmy.blahaj.zone 4 points 1 week ago (2 children)

    This is an example how to define plymouth with your own logo derivation. Isn't this the most beautiful?

      boot = {
        plymouth = {
          enable = true;
          theme = "breeze";
          logo = pkgs.stdenv.mkDerivation {
            name = "out.png";
            dontUnpack = true;
            src = pkgs.fetchurl {
              url = "https://raw.githubusercontent.com/NixOS/nixos-artwork/refs/heads/master/logo/nix-snowflake-rainbow.svg";
              sha256 = "sha256-gMeJgiSSA5hFwtW3njZQAd4OHji6kbRCJKVoN6zsRbY=";
            };
            nativeBuildInputs = with pkgs; [imagemagick];
            buildPhase = ''
              magick -background none -size 200x200 $src nix-snowflake-rainbow.png
            '';
            installPhase = ''
              install -Dm0644 nix-snowflake-rainbow.png $out
            '';
          };
        };
    
    
    [–] jim3692@discuss.online 3 points 1 week ago

    It can be simplified with the use of runCommand:

    {
      boot = {
        plymouth = {
          enable = true;
          theme = "breeze";
          logo =
            with pkgs;
            let
              src = fetchurl {
                url = "https://raw.githubusercontent.com/NixOS/nixos-artwork/refs/heads/master/logo/nix-snowflake-rainbow.svg";
                sha256 = "sha256-gMeJgiSSA5hFwtW3njZQAd4OHji6kbRCJKVoN6zsRbY=";
              };
            in
            runCommand "out.png" { } "${imagemagick}/bin/magick -background none -size 200x200 ${src} $out";
        };
      };
    }
    
    [–] PrettyFlyForAFatGuy@feddit.uk 2 points 1 week ago (1 children)

    Why didn't they just go for JSON?

    [–] varnia@lemmy.blahaj.zone 9 points 1 week ago (1 children)

    Simply because nix is a functional programing language, not just a data representation.

    makes sense, thanks