dotfiles

(★ 12)

~/❤️

File Explorer

  • .gitmodules
  • dotbot
  • gitconfig
  • install
  • install.conf.yaml
  • README.md
  • setup.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

nix shell

View Details ▼

Start a shell in which the specified packages are available.
See also: `nix-shell`, `nix flake`.

nix shell {{nixpkgs#pkg1 nixpkgs#packageSet.pkg2 ...}}

Start an interactive shell with some packages from `nixpkgs`:

nix shell {{nixpkgs/nixos-21.05#pkg}}

Start a shell providing a package from an older version of `nixpkgs` (21.05):

nix shell -L

Start a shell with the "default package" from a flake in the current directory, printing build logs if any builds happen:

🔍

nixos-rebuild

View Details ▼

Reconfigure a NixOS machine.

sudo nixos-rebuild switch

Build and switch to the new configuration, making it the boot default:

sudo nixos-rebuild switch {{[-p|--profile-name]}} {{name}}

Build and switch to the new configuration, making it the boot default and naming the boot entry:

sudo nixos-rebuild switch --upgrade

Build and switch to the new configuration, making it the boot default and installing updates:

🔍

wsl

View Details ▼

Manage the Windows Subsystem for Linux.

wsl {{shell_command}}

Start a Linux shell (in the default distribution):

wsl {{[-e|--exec]}} {{command}} {{command_arguments}}

Run a Linux command without using a shell:

wsl {{[-d|--distribution]}} {{distribution}} {{shell_command}}

Specify a particular distribution:

// repository documentation