chore: rename latest to nixpkgs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Benjamin Bädorf 2023-09-14 11:01:28 +02:00
parent f7f57e4944
commit 9238ad58b0
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -6,7 +6,7 @@
inputs = {
# Track channels with commits tested and built by hydra
nixos.url = "github:nixos/nixpkgs/nixos-23.05";
latest.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
@ -55,7 +55,16 @@
inputs.nixos-flake.flakeModule
];
perSystem = { config, ... }: { };
perSystem = { system, config, ... }: {
# Code to consume overlays, see https://flake.parts/overlays#consuming-an-overlay
_module.args.pkgs = import inputs.nixos {
inherit system;
overlays = [
agenix.overlays.default
(import ./pkgs/default.nix)
];
};
};
flake = {
# Configurations for Linux (NixOS) machines