mirror of
https://github.com/wlcx/nix-templates.git
synced 2026-09-18 13:48:22 +01:00
Standardise flake-utils input name
This commit is contained in:
+3
-3
@@ -1,14 +1,14 @@
|
||||
{
|
||||
description = "Another cool golang abhorration from samw";
|
||||
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
inputs.utils.url = "github:numtide/flake-utils";
|
||||
inputs.devshell = {
|
||||
url = "github:numtide/devshell";
|
||||
inputs.flake-utils.follows = "flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, devshell }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
outputs = { self, nixpkgs, utils, devshell }:
|
||||
utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
|
||||
Reference in New Issue
Block a user