-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
27 lines (21 loc) · 830 Bytes
/
flake.nix
File metadata and controls
27 lines (21 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
description = "Determinate Systems flake templates";
outputs =
{ self, ... }@inputs:
{
templates = {
default = {
description = "Default flake template";
path = ./default;
welcomeText = ''
# Welcome to your new Nix flake ❄️🍁
To activate your new flake's development environment, run `nix develop` or `direnv allow` if you use direnv.
For a more interactive flake initialization experience, delete the `flake.nix` that was just created and use fh, the CLI for FlakeHub:
nix run "https://flakehub.com/f/DeterminateSystems/fh/0" -- init
For more on flakes, check out **Zero to Nix**, our flake-forward guide to Nix:
https://zero-to-nix.com
'';
};
};
};
}