13 changed files with 1695 additions and 6 deletions
@ -0,0 +1 @@ |
|||||||
|
/nix/store/2kk6k544kgd4qig5rx812qn2qcwjx5qh-source |
||||||
@ -0,0 +1 @@ |
|||||||
|
/nix/store/p1ranb8qkpgcwh3lag39jjmcajk7rsjx-source |
||||||
@ -0,0 +1 @@ |
|||||||
|
/nix/store/pnwyi8fcq1v0b9i4905b3yxkaw29dmly-source |
||||||
@ -0,0 +1 @@ |
|||||||
|
/nix/store/h22lwjkqqckazfmbpj95i36zzwwkvq1z-nix-shell-env |
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,43 @@ |
|||||||
|
{ |
||||||
|
"nodes": { |
||||||
|
"flake-utils": { |
||||||
|
"locked": { |
||||||
|
"lastModified": 1642700792, |
||||||
|
"narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", |
||||||
|
"owner": "numtide", |
||||||
|
"repo": "flake-utils", |
||||||
|
"rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", |
||||||
|
"type": "github" |
||||||
|
}, |
||||||
|
"original": { |
||||||
|
"owner": "numtide", |
||||||
|
"repo": "flake-utils", |
||||||
|
"type": "github" |
||||||
|
} |
||||||
|
}, |
||||||
|
"nixpkgs": { |
||||||
|
"locked": { |
||||||
|
"lastModified": 1643000262, |
||||||
|
"narHash": "sha256-8hrbufiCcZgicU8UvHaRkruYuzM8z3lJvQkSh9ezMEg=", |
||||||
|
"owner": "NixOS", |
||||||
|
"repo": "nixpkgs", |
||||||
|
"rev": "cc68710784ffe0ee035ee7b726656c44566cac94", |
||||||
|
"type": "github" |
||||||
|
}, |
||||||
|
"original": { |
||||||
|
"owner": "NixOS", |
||||||
|
"ref": "nixpkgs-unstable", |
||||||
|
"repo": "nixpkgs", |
||||||
|
"type": "github" |
||||||
|
} |
||||||
|
}, |
||||||
|
"root": { |
||||||
|
"inputs": { |
||||||
|
"flake-utils": "flake-utils", |
||||||
|
"nixpkgs": "nixpkgs" |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
"root": "root", |
||||||
|
"version": 7 |
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
{ |
||||||
|
description = "A basic flake with a shell"; |
||||||
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; |
||||||
|
inputs.flake-utils.url = "github:numtide/flake-utils"; |
||||||
|
|
||||||
|
outputs = { self, nixpkgs, flake-utils }: |
||||||
|
flake-utils.lib.eachDefaultSystem (system: let |
||||||
|
pkgs = nixpkgs.legacyPackages.${system}; |
||||||
|
in { |
||||||
|
devShell = pkgs.mkShell { |
||||||
|
nativeBuildInputs = with pkgs; [ hugo ]; |
||||||
|
buildInputs = [ ]; |
||||||
|
}; |
||||||
|
}); |
||||||
|
} |
||||||
Loading…
Reference in new issue