feat: init
This commit is contained in:
commit
c839eeded1
16 changed files with 3772 additions and 0 deletions
30
templates/default/flake.nix
Normal file
30
templates/default/flake.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
description = "blueprint-universe";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-24.11";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
||||
blueprint.url = "github:numtide/blueprint";
|
||||
blueprint.inputs.nixpkgs.follows = "nixpkgs";
|
||||
treefmt-nix.url = "github:numtide/treefmt-nix";
|
||||
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
nixago.url = "github:jmgilman/nixago";
|
||||
nixago.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
crane.url = "github:ipetkov/crane";
|
||||
rust-overlay = {
|
||||
url = "github:oxalica/rust-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
inputs:
|
||||
inputs.blueprint {
|
||||
inherit inputs;
|
||||
prefix = "nix/";
|
||||
|
||||
# change this if unfree software is required.
|
||||
nixpkgs.config.allowUnfree = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue