flake: add explicit 'systems' input

This commit is contained in:
Bruno BELANYI 2024-01-03 14:00:58 +00:00
parent 39eba647ac
commit a93dc2935b
2 changed files with 16 additions and 2 deletions

View file

@ -86,7 +86,9 @@
}, },
"futils": { "futils": {
"inputs": { "inputs": {
"systems": "systems" "systems": [
"systems"
]
}, },
"locked": { "locked": {
"lastModified": 1701680307, "lastModified": 1701680307,
@ -214,7 +216,8 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nur": "nur", "nur": "nur",
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks",
"systems": "systems"
} }
}, },
"systems": { "systems": {
@ -228,6 +231,7 @@
}, },
"original": { "original": {
"owner": "nix-systems", "owner": "nix-systems",
"ref": "main",
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }

View file

@ -27,6 +27,9 @@
owner = "numtide"; owner = "numtide";
repo = "flake-utils"; repo = "flake-utils";
ref = "main"; ref = "main";
inputs = {
systems.follows = "systems";
};
}; };
home-manager = { home-manager = {
@ -64,6 +67,13 @@
nixpkgs-stable.follows = "nixpkgs"; nixpkgs-stable.follows = "nixpkgs";
}; };
}; };
systems = {
type = "github";
owner = "nix-systems";
repo = "default";
ref = "main";
};
}; };
# Can't eta-reduce a flake outputs... # Can't eta-reduce a flake outputs...