Skip to content

Instantly share code, notes, and snippets.

@brainsik
brainsik / rules.json
Last active February 1, 2023 08:07
Darktide - Armoury Exchange - filter rules
[
{
"minStats": 360
},
{
"minBlessingRarity": 3,
"item": [
"Staff"
]
},
@brainsik
brainsik / README.md
Last active March 26, 2024 00:21
NixOS / Nix notes

Notes from running NixOS in a local VM.

The attached configuration.nix sets users immutable to force managing them through the config. The primary user is added to the wheel group and the wheel group has passwordless sudo access. All passwords are set by hash (using mkpasswd). SSH keys can be added for the primary user and/or Tailscale SSH can be enabled.

Everything below is run as root.

Partition, format, mount, configure:

@brainsik
brainsik / ssh_config
Last active January 1, 2025 05:50
SSH Config for connecting to a Debian 3 system and forwarding X11 back to macOS
# debian 3.x
Host 10.0.0.3
KexAlgorithms diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
HostKeyAlgorithms ssh-rsa
Ciphers aes128-cbc,aes192-cbc,aes256-cbc
MACs hmac-sha1
ForwardX11 yes
ForwardX11Trusted yes
XAuthLocation /opt/X11/bin/xauth