Warning: Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async="" or moving it into the root <head> tag.
Warning: In HTML, <script> cannot be a child of <html>.
#!/bin/sh | |
apk add curl git github-cli nodejs npm vim zsh | |
curl -fsSl https://raw.githubusercontent.com/maclong9/dots/refs/heads/main/setup.sh | sh | |
exit |
# configuration.nix - Main NixOS system configuration | |
{ config, pkgs, lib, ... }: | |
{ | |
imports = [ | |
./hardware-configuration.nix | |
]; | |
# Boot configuration | |
boot.loader.systemd-boot.enable = true; |
import { IS_BROWSER } from "$fresh/runtime.ts"; | |
import { useSignal } from "@preact/signals"; | |
interface AgeGateProps { | |
redirectUrl?: string; | |
siteUrl?: string; | |
cookieName?: string; | |
cookieExpireDays?: number; | |
} |