Skip to content

Instantly share code, notes, and snippets.

@dixiedream
dixiedream / autoinstall.yaml
Created May 4, 2024 09:55
Ubuntu autoinstall configuration YAML
autoinstall:
version: 1
identity:
realname: $realname
username: $username
password: $crypted_password
hostname: $hostname
active-directory:
admin-name: $admin_name
domain-name: $domain_name
@dixiedream
dixiedream / proxmox.md
Last active January 20, 2024 01:31
Proxmox Wiki

Proxmox Wiki

Zfs

Get status

zfs list
@dixiedream
dixiedream / vimium.conf
Created September 17, 2022 07:46
Vimium browser extension conf
unmapAll
map ? showHelp
map h scrollLeft
map j scrollDown
map k scrollUp
map l scrollRight
map gg scrollToTop
map G scrollToBottom
map d scrollPageDown
map u scrollPageUp
@dixiedream
dixiedream / archInstall.md
Last active October 28, 2025 18:08
Arch installation

Arch installation steps

My goto arch installation steps heavily inspired by the Arch Linux wiki. Change var noted with {{ VAR }} notation to your setup and taste.

Bear in mind that if you plan to dual boot with Windows, it'd be better to have it first installed as it ofter messes things at bootloader level

Index

  1. Install preparation
@dixiedream
dixiedream / setupDotfiles.sh
Last active October 1, 2021 07:56
Download Dotfiles
#!/bin/sh
set -e
# Download and setup my dotfiles, repo overriding possible just pass your repo as first argument
repo=${1:-https://github.com/dixiedream/dotfiles.git}
git clone --bare "$repo" "$HOME/.cfg"
function config {