Skip to content

Commit 6425b12

Browse files
committed
flake init: WIP
1 parent 8813000 commit 6425b12

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/result

flake.lock

+60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
description = "scm_breeze shell plugin for git and interactive shell";
3+
4+
inputs = {
5+
flake-utils.url = "github:numtide/flake-utils";
6+
nixpkgs.url = "nixpkgs/nixos-23.11";
7+
};
8+
9+
outputs = { self, flake-utils, nixpkgs, ... }:
10+
flake-utils.lib.eachDefaultSystem (system:
11+
let pkgs = import nixpkgs { inherit system; };
12+
in rec {
13+
formatter = pkgs.nixfmt;
14+
packages = rec {
15+
hello = pkgs.hello;
16+
default = hello;
17+
};
18+
});
19+
}

0 commit comments

Comments
 (0)