Skip to content

Instantly share code, notes, and snippets.

View neolectron's full-sized avatar
👀
Coding

Manu neolectron

👀
Coding
View GitHub Profile
import type { Plugin } from "vite";
import { relative } from "node:path";
type MinimalPluginContext = {
resolve(
this: MinimalPluginContext,
source: string,
importer?: string,
options?: { skipSelf?: boolean },
): Promise<{ id: string } | null>;
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix # Include the results of the hardware scan.
];