- 67 Posts
- 6 Comments
Joined 2 years ago
Cake day: November 17th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
captainkangaroo@discuss.tchncs.deto
Ask Lemmy•What's something you've improved at recently?
4·2 years agoThat actually is impressive! I like your style. Curious, how long did it take you to get to this point?
captainkangaroo@discuss.tchncs.deOPto
Nix / NixOS@programming.dev•Git hashes in NixEnglish
2·2 years agoNot the author. But thank you, I didn’t know that.
captainkangaroo@discuss.tchncs.deOPto
Emacs@lemmy.ml•TIL emacs has a built-in vi (not vim) mode called viper
4·2 years agoInteresting…TIL again!
captainkangaroo@discuss.tchncs.deto
Nix / NixOS@programming.dev•Help with Creating nix-shellsEnglish
2·2 years agoWhat you’re doing is equivalent to
nix-shell -p "grim slurp"Which won’t work because nix-shell expects
nix-shell -p "grim" "slurp"Which then becomes
{...}@args: with import <nixpkgs> args; (pkgs.runCommandCC or pkgs.runCommand) "shell" { buildInputs = [ (grim) (slurp) ]; } ""According to the manual
nix-shell --packagesinterprets each command line arguments as attribute names inside the Nix packages collection.The error message is because you are giving multiple package names as a single argument.
I am not the author. Just thought this was interesting.
























This repo has a lot off cool ones like this.