We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22da01b commit 54d8814Copy full SHA for 54d8814
1 file changed
flake.nix
@@ -3,19 +3,9 @@
3
4
outputs = { self }:
5
let
6
- # nixpkgs is only used for development. Don't add it to the flake.lock.
7
- gitRev = "500d695aac9ea67195812f309890a911fbc96bda";
8
- nixpkgs = builtins.fetchTarball {
9
- url = "https://github.com/NixOS/nixpkgs/archive/${gitRev}.tar.gz";
10
- sha256 = "sha256-ya3rCWKDbPWMVsh89/Z1mCJ9HFa5/DKdjcgcKkWB1xs=";
11
- };
12
-
13
# Real developers use Linux for development :-p
14
system = "x86_64-linux";
15
16
- pkgs = import ./. {
17
- inherit nixpkgs system;
18
+ pkgs = import ./. { inherit system; };
19
in
20
{
21
# Import this overlay into your instance of nixpkgs
0 commit comments