From b0f602baa80c813cccc8e653ba314dc9d32c311d Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Tue, 1 Nov 2022 11:34:16 -0400 Subject: [PATCH] feat: Locked the `nixpkgs` version. --- flake.lock | 20 +++++++++++++++++++- flake.nix | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/flake.lock b/flake.lock index 5999137..189790a 100644 --- a/flake.lock +++ b/flake.lock @@ -1,6 +1,24 @@ { "nodes": { - "root": {} + "nixpkgs": { + "locked": { + "lastModified": 1667085676, + "narHash": "sha256-jPHYYoSdrV3ypWG4oi9SUeI2MU6dLjxM88+9io5Rrx0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e6e6bad81b7e11f37d893ef39712ce8918ae2338", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } }, "root": "root", "version": 7 diff --git a/flake.nix b/flake.nix index b7d0a87..ece5e91 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "A very basic flake"; - outputs = { self }: { + outputs = { nixpkgs, self }: { nixosModules = { laravel = import ./nixos/modules/web-apps/laravel.nix; vagrant = { ... }: { imports = [ ./nixos/modules/virtualisation/vagrant.nix ]; };