Skip to content

Commit

Permalink
flake init: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ghthor committed Mar 2, 2024
1 parent 8813000 commit 6425b12
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/result
60 changes: 60 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
description = "scm_breeze shell plugin for git and interactive shell";

inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/nixos-23.11";
};

outputs = { self, flake-utils, nixpkgs, ... }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in rec {
formatter = pkgs.nixfmt;
packages = rec {
hello = pkgs.hello;
default = hello;
};
});
}

0 comments on commit 6425b12

Please sign in to comment.