This file contains 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 | |
# More info at: https://github.com/elitak/nixos-infect | |
set -e -o pipefail | |
makeConf() { | |
# Skip everything if main config already present | |
[[ -e /etc/nixos/configuration.nix ]] && return 0 |
This file contains 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
/* eslint-disable @typescript-eslint/restrict-plus-operands */ | |
import stripIndent from 'https://esm.sh/strip-indent' | |
// https://sw.kovidgoyal.net/kitty/conf/#the-color-table | |
const ansi = [ | |
'black', | |
'red', | |
'green', | |
'yellow', | |
'blue', |
This file contains 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
import {extname} from 'path' | |
import {build, stop} from 'esbuild' | |
import {solidPlugin} from 'esbuild-plugin-solid' | |
import {denoPlugin} from 'esbuild_deno_loader' | |
const [input] = Deno.args | |
const ext = extname(input) | |
const compileOutput = input.replace(ext, '.compiled.js') | |
const bundleOutput = input.replace(ext, '.bundle.js') |