18 lines
364 B
Nix
18 lines
364 B
Nix
|
# -*- mode: snippet -*-
|
||
|
# contributor: Kiana Sheibani <kiana.a.sheibani@gmail.com>
|
||
|
# key: __flake.nix
|
||
|
# name: nix flake template
|
||
|
# --
|
||
|
{
|
||
|
description = "${1:Flake description}";
|
||
|
|
||
|
inputs = {
|
||
|
${2:nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
}${3:flake-utils.url = "github:numtide/flake-utils";
|
||
|
}$4
|
||
|
};
|
||
|
|
||
|
outputs = { self$5, ... }:
|
||
|
$0
|
||
|
}
|