Skip to content

Instantly share code, notes, and snippets.

View lewalkingdad's full-sized avatar

Damien Biasotto lewalkingdad

  • Bondi Beach, New South Wales, Australia
  • 18:14 (UTC +10:00)
  • X @thql
View GitHub Profile
@lewalkingdad
lewalkingdad / build.log
Created March 29, 2023 12:25
jetbrains-jdk-jcef-17.0.6-b829.5 - build log
@nix { "action": "setPhase", "phase": "unpackPhase" }
unpacking sources
unpacking source archive /nix/store/4zyifzdw3d8gwwk5r61xsiphvydnrjpy-source
source root is source
@nix { "action": "setPhase", "phase": "patchPhase" }
patching sources
patching script interpreter paths in configure
configure: interpreter directive changed from "#!/bin/bash" to "/nix/store/mh2ga0rzccp2749ar62gmsij8bfajykj-bash-5.2-p15/bin/bash"
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" }
updateAutotoolsGnuConfigScriptsPhase
@lewalkingdad
lewalkingdad / setup-guide.org
Last active October 1, 2025 03:45
Setup NixOS on Macbook w/ Apple Silicon Chip (LUKS + LVM + BTRFS)

A guide to setup NixOS with LUKS and BTRFS on a MacBook Pro

This is mostly a dumping of my thoughts and steps I had to go to setup my macbook with NixOS.

I cannot guarantee the accuracy of the information and nor being held accountable to any issue if somehow this guide ends up on the internet.

@lewalkingdad
lewalkingdad / flake.nix
Created March 19, 2025 00:56
Nix Flake Template For Elixir / Phoenix Dev Environment
{
description = "Elixir Phoenix Dev Environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
process-compose.url = "github:Platonic-Systems/process-compose-flake";
services-flake.url = "github:juspay/services-flake";
git-hooks.url = "github:cachix/git-hooks.nix";
};
@lewalkingdad
lewalkingdad / modus-vivendi-tinted.kak
Created October 14, 2025 11:17
Kakoune Modus Vivendi Tinted - Tree Sitter - LSP
# Modus-Vivendi-Tinted theme for Kakoune
# Extended with Tree-sitter and LSP support
# Colors from official GNU Emacs Modus Themes palette
# Color palette - Official Modus Vivendi Tinted colors
declare-option str bg_main 'rgb:0d0e1c'
declare-option str bg_dim 'rgb:1d2235'
declare-option str fg_main 'rgb:ffffff'
declare-option str fg_dim 'rgb:989898'
declare-option str bg_alt 'rgb:4a4f69'
@lewalkingdad
lewalkingdad / kts.nix
Last active November 3, 2025 23:42
Kakoune Tree Sitter Nix
{
config,
pkgs,
lib,
...
}:
let
groups = [
"variable"