diff options
author | Justin Bedo <cu@cua0.org> | 2022-09-29 08:53:40 +1000 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2022-09-29 08:55:35 +1000 |
commit | 8ecdab68587c07cf88ebc0b8a8f2bd0e1a703e37 (patch) | |
tree | 258b2b64362b5891e268f2761e6a798f2072759c /flake.nix |
init
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..37741f3 --- /dev/null +++ b/flake.nix @@ -0,0 +1,8 @@ +{ +inputs.nixpkgs.url = "github:nixos/nixpkgs"; +inputs.flake-utils.url = "github:numtide/flake-utils"; +outputs = {self, nixpkgs, flake-utils}: + flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs {inherit system;}; in { + defaultPackage = import ./default.nix { inherit pkgs; }; + }); + } |