- Encrypt everthing including /boot and /root
- Enter password once
- Support UEFI
Download NixOS minimal iso and copy to USB stick. For example on Mac OSX
$ diskutil list
$ diskutil unmountDisk /dev/disk1 # Make sure you got right device| """ | |
| Uncipher Cisco type 7 ciphered passwords | |
| Usage: python uncipher.py <pass> where <pass> is the text of the type 7 password | |
| Example: | |
| $ python uncipher.py 094F4F1D1A0403 | |
| catcat | |
| """ | |
| import fileinput | |
| import sys |
| { | |
| virtualisation.kvmfr = { | |
| enable = true; | |
| shm = { | |
| enable = true; | |
| size = 128; | |
| user = "j-brn"; | |
| group = "libvirtd"; |
While all rust documentation has some pretty nice themes, it's a bother to have to select the proper theme for evey single repo, and sometimes this choice does not affect other modules.
Simply add this to your ENV.
# .zshrc
export RUSTDOCFLAGS="--default-theme=ayu"There's a better way to do this, it's to modify the Cargo doc. So that's a toml file that is held in the user directory.
| use eyre::{Context, ContextCompat, Report}; | |
| use id3::{Content, Tag, TagLike}; | |
| use image::ImageReader; | |
| use std::{env, io::Cursor}; | |
| fn main() -> Result<(), Report> { | |
| color_eyre::install()?; | |
| get_cover_art(env::args().nth(1).unwrap().as_str())?; | |
| Ok(()) | |
| } |