Huh. Glad I could help, and now I'm going to try it out on my phone too ๐
linuxmemes
Hint: :q!
Sister communities:
- LemmyMemes: Memes
- LemmyShitpost: Anything and everything goes.
- RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community for any reason.
- 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.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
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. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
Please report posts and comments that break these rules!
Good for you fellow adventurer!
- I spun my laptop up (wait for me sleep, I promise I won't be long...)
- updated my home-manager configuration to add starship above
cowsay
- added the updated
home-manager
config,bashrc
,config.fish
to mychezmoi
configuration - promised myself I would go to sleep after this much, fingers crossed!
Proof it happened:
That reminds me that I should check out home manager. That's a whole rabbit hole I haven't gone down yet. I've moved over to NixOS, but I'm sticking everything in /etc/nixos/configuration.nix
atm.
Home Manager is a BIG rabbithole of it's own for sure. Between nixos
, nix
, and home-manager
, I've probably skimped on sleep for weeks.
At the moment, I primarily use 3 distributions ( OpenSuse Tumbleweed NixOS Ubuntu ), but each one of them uses a combination of chezmoi to sync dotfiles, and home-manager to manage command line packages - nice to be able to have the same command line utilities and tools available.
One thing I like about my current home-manager config is that it installs more packages on nixos than on other distributions, by separating the all_os vs. nix_only packages into two separate files, and sourcing them like so:
imports = [
./all_os.nix
] ++ lib.optional (builtins.pathExists /etc/nixos/configuration.nix) ./nixos_only.nix;
Anyways, I digress :)