This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| ### ====== EDIT ME (DISKS & BASICS) ========================================== | |
| # Root (NVMe) disk -> ESP + LUKS1 for root btrfs | |
| ROOT_DISK="/dev/sda" | |
| # Data (SATA/SSD) disk -> LUKS1 for data btrfs | |
| DATA_DISK="/dev/sdb" | |
| # Partition sizes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Per-user trust for .NET dev certs on Void/Linux (OpenSSL) | |
| TRUST_DIR="$HOME/.aspnet/dev-certs/trust" | |
| DEV_PEM="$TRUST_DIR/dev-cert.pem" | |
| SYSTEM_CERT_DIR="/etc/ssl/certs" | |
| BASH_PROFILE="$HOME/.bash_profile" | |
| echo "==> Checking prerequisites..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| ### ====== EDIT ME (DISKS & BASICS) ========================================== | |
| # Root (NVMe) disk -> ESP + LUKS1 for root btrfs | |
| ROOT_DISK="/dev/nvme0n1" | |
| # Data (SATA/SSD) disk -> LUKS1 for data btrfs | |
| DATA_DISK="/dev/sda" | |
| # Partition sizes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Ignore Visual Studio temporary files, build results, and | |
| ## files generated by popular Visual Studio add-ons. | |
| ## | |
| ## Get latest from `dotnet new gitignore` | |
| # dotenv files | |
| .env | |
| # User-specific files | |
| *.rsuser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Top-most EditorConfig file | |
| root = true | |
| # Default settings for all files | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = false | |
| indent_size = 4 | |
| tab_width = 4 |