I’m not a bot.

  • 61 Posts
  • 472 Comments
Joined 6 months ago
cake
Cake day: January 21st, 2025

help-circle
  • If it were me, I’d set up my mom with GNOME because I feel like KDE might provide too many footguns or may look/feel overwhelming due to the many available customization options.

    IDK though. I’ve used GNOME for years and have only briefly used KDE for experimentation. I’m guessing there’s some way to customize KDE to make it more simple? I imagine GNOME would be nice on a tablet because it tends to have nice big button targets, but I haven’t tried it.



  • paequ2toFuck AI@lemmy.worldvibe physics
    link
    fedilink
    English
    arrow-up
    14
    ·
    edit-2
    3 days ago

    Damn, I just realized the video is 40 minutes long! I watched all of it. So damn on point.

    Of course I know about the hallucinations and I’ve had to correct its basic math, but now that we’ve moved past the physics that I understand, it’s amazing!

    This ^^^ 1,000 times this!!! ^^^ I’ve had so many people tell me this before…












  • Just in case it helps anyone, here’s what my service block looks like:

      (services
        (let ((custom-services (list (service gnome-desktop-service-type)
    			         (service bluetooth-service-type)
    			         (service cups-service-type)
    			         (service tailscale-service-type)
    				 (set-xorg-configuration
    				   (xorg-configuration
    				     (keyboard-layout keyboard-layout)))))
    	  (nonguix-url "https://substitutes.nonguix.org/")
    	  (nonguix-key "(public-key (ecc (curve Ed25519) (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#)))"))
          (modify-services
    	(append custom-services 
    		%desktop-services)
    	(guix-service-type config =>
    			   (guix-configuration
    			     (inherit config)
    			     (substitute-urls
    			       (append (list nonguix-url) 
    				       %default-substitute-urls))
    			     (authorized-keys
    			       (append (list (plain-file "nonguix.pub"
    							 nonguix-key))
    				       %default-authorized-guix-keys)))))))
    





  • Many of them don’t even allow it to be a hidden file—they just require a fully unhidden “tool.yml” file sitting right there in the root of your project.

    I love this. I hate when tools only allow hidden config files. I want to know where the config is—my teammates should be aware of where the config is. I don’t want to be tricked into thinking there isn’t a config file in a directory.

    I actually have alias ls='ls -A' in my bashrc so I see everything.


  • I’ve been enjoying Guix for the last 8 days. You declare your OS and home config in a file and you can check them into source control. It was originally a fork of NixOS, but has diverged a lot.

    The CLIs and APIs are pretty nice. They have a concept of “channels”, which are git repos you can download software from. The default official channel only hosts FOSS software, but you can trivially add non-FOSS channels and they work just as well as the first-party channels.

    Each channel update and package install, removal, update get put on a log, which you can trivially jump between. guix package --switch-genereation=28 and boom you’re at that generation (it’s like a git commit). The software and config changes get saved in the generation so the jump is clean and atomic. I actually bisected my OS yesterday to track a bug! That was cool. You can also create and share isolated, reproducible environments.

    Guix works with Flatpak and distrobox as well, in case some software isn’t available in existing channels. I got HiDPI, Zoom, Logseq, Syncthing, and Tailscale working.

    The biggest drawback for me so far is that it doesn’t use systemd. Not sure if it’s a dealbreaker for me yet. Systemd does way more than just manage system services, so GNU Shepherd (which Guix uses) isn’t a real replacement.