Linux
NixOS
Fetch files without Flakes
let
source = pkgs.fetchurl {
url = "https://somewebsite/somefile.png";
sha256 = "{hash}"; …
let
source = pkgs.fetchurl {
url = "https://somewebsite/somefile.png";
sha256 = "{hash}"; …Bash for noobs
Basic Bash commands
Selected basics
ls # List contents of directory
Add -1 to display results in a single column. Add -l to see more details. Add …
ls # List contents of directory
-1 to display results in a single column. Add -l to see more details. Add …