A modular configuration bank for building reproducible development environments across platforms.
This repository provides automated setup scripts and dotfiles for CachyOS, Ubuntu Server, and Windows Workstation. CachyOS installs the complete development profile. Ubuntu Server installs only the shared Zsh setup.
Bootstrap your entire development environment with one command:
Run this after completing the CachyOS graphical installer:
curl -fsSL https://raw.githubusercontent.com/inayayousfi/myconfig/main/bootstrap.sh | bash -s -- cachyosThe CachyOS profile requires KDE Plasma 6.7 through 6.x and configures a Black & Pink clock island and application dock on every display. The island expands into five pages for hardware and settings, the calendar, notifications, application tray icons, and session and power controls. It uses native Plasma widgets, without Quickshell. Eight-pixel inward activation zones reveal the hidden panels across each screen edge, and newly connected displays receive panels automatically. The profile also restores the Fedora-era Black & Pink rEFInd theme with mouse input and built-in OS and utility icons, installs Axidev OSK, Kanata with an independent KDE tray for selecting keyboard profiles, and Handy offline dictation with either-side Ctrl+Shift push-to-talk. The on-screen keyboard starts on the login screen and again after desktop login. Log out and back in so the new input-device group memberships apply, then restart the selected login manager or reboot to activate login-screen startup.
The final authentication step offers GitHub and Tailscale login. Declining either prompt prints the command for later.
curl -fsSL https://raw.githubusercontent.com/inayayousfi/myconfig/main/bootstrap.sh | bash -s -- ubuntuirm https://raw.githubusercontent.com/inayayousfi/myconfig/main/bootstrap.ps1 | iexThis pipes the script straight into iex without writing anything to disk, so there's no Mark-of-the-Web flag and no execution-policy check to satisfy — it works even on locked-down/GPO-managed machines.
If your environment blocks piping remote content into iex, fall back to:
powershell -NoProfile -ExecutionPolicy Bypass -Command "& { $p = Join-Path $env:TEMP 'bootstrap.ps1'; Invoke-WebRequest 'https://raw.githubusercontent.com/inayayousfi/myconfig/main/bootstrap.ps1' -OutFile $p; Unblock-File $p; & $p }"After the first install, the bootstrap flow imports a self-signed code-signing certificate and sets PowerShell's ExecutionPolicy to RemoteSigned for the current user. Re-running windows-workstation/install.ps1, nvim, or the PowerShell profile script directly afterward no longer needs -Bypass, since those scripts are signed as part of each release.
/!\ This does not work on Windows. Use the Windows command above instead.
curl -fsSL https://raw.githubusercontent.com/inayayousfi/myconfig/main/bootstrap.sh | bashThe bootstrap script will:
- Download the latest release
- Extract all configuration files
- Run the appropriate platform installer
- Copy Linux dotfiles into
~/dotfiles, back up conflicts, and link them with GNU Stow - Install the packages for the selected platform
The CachyOS VM harness installs the Desktop ISO interactively, preserves a clean base system, and tests the current working tree without a commit or release.
- Repeatable: Safe to rerun, with timestamped backups before replacement
- Modular: Shared dotfiles with platform-specific additions
- Automated: Installs all dependencies and tools
- Documented: Full specifications in SPECS.md
- Backed Up: Automatically backs up existing configurations
Available uninstall scripts:
./ubuntu-server/uninstall.sh # Ubuntu Server
./windows-workstation/uninstall.ps1 # Windows WorkstationSee SPECS.md for complete configuration specifications and details about all installed components.
Minimal requirements - the bootstrap script handles everything else:
CachyOS and Ubuntu Server:
curl- for downloading- Internet connection
Windows:
- Winget (pre-installed on Windows 10 1709+)
- Internet connection