diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-03-14 17:12:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 17:12:50 +0100 |
commit | 9ec1a3ae603c008bc135a12bcf746fdb7379e694 (patch) | |
tree | 527957aa3a4b1af33514cd11ec7b38d3ced5d6de /flake.nix | |
parent | a387f46967ae9eb97eaeb17ca26fb583283815ce (diff) | |
parent | 934431d06ca4e3daea07b7fb4fb2789bd9b053b3 (diff) |
Merge pull request #7989 from sysedwinistrator/flake-compat-sha256-mr
add flake-compat to flake.nix and use sha256 in default.nix
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,8 +4,9 @@ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11-small"; inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2"; inputs.lowdown-src = { url = "github:kristapsdz/lowdown"; flake = false; }; + inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; - outputs = { self, nixpkgs, nixpkgs-regression, lowdown-src }: + outputs = { self, nixpkgs, nixpkgs-regression, lowdown-src, flake-compat }: let inherit (nixpkgs) lib; |