feat: Locked the nixpkgs version.

This commit is contained in:
Spencer Brower
2022-11-01 11:34:16 -04:00
parent d7ec6c6945
commit b0f602baa8
2 changed files with 20 additions and 2 deletions

20
flake.lock generated
View File

@@ -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

View File

@@ -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 ]; };