chore: rename latest to nixpkgs
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f7f57e4944
commit
9238ad58b0
13
flake.nix
13
flake.nix
|
@ -6,7 +6,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
# Track channels with commits tested and built by hydra
|
# Track channels with commits tested and built by hydra
|
||||||
nixos.url = "github:nixos/nixpkgs/nixos-23.05";
|
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.url = "github:edolstra/flake-compat";
|
||||||
flake-compat.flake = false;
|
flake-compat.flake = false;
|
||||||
|
@ -55,7 +55,16 @@
|
||||||
inputs.nixos-flake.flakeModule
|
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 = {
|
flake = {
|
||||||
# Configurations for Linux (NixOS) machines
|
# Configurations for Linux (NixOS) machines
|
||||||
|
|
Loading…
Reference in a new issue