nix-config/flake.nix

83 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2021-02-05 16:25:39 +01:00
{
2021-03-07 19:30:33 +01:00
description = "NixOS configuration with flakes";
2021-02-05 16:25:39 +01:00
inputs = {
2021-09-25 13:30:51 +02:00
agenix = {
type = "github";
owner = "ryantm";
repo = "agenix";
ref = "main";
2021-09-25 13:30:51 +02:00
inputs = {
2023-05-12 12:10:33 +02:00
home-manager.follows = "home-manager";
2021-09-25 13:30:51 +02:00
nixpkgs.follows = "nixpkgs";
2024-01-03 15:05:46 +01:00
systems.follows = "systems";
2021-09-25 13:30:51 +02:00
};
};
2023-03-08 18:41:00 +01:00
flake-parts = {
type = "github";
owner = "hercules-ci";
repo = "flake-parts";
ref = "main";
inputs = {
nixpkgs-lib.follows = "nixpkgs";
};
};
futils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "main";
2024-01-03 15:00:58 +01:00
inputs = {
systems.follows = "systems";
};
};
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
nur = {
type = "github";
owner = "nix-community";
repo = "NUR";
ref = "master";
};
pre-commit-hooks = {
type = "github";
owner = "cachix";
repo = "pre-commit-hooks.nix";
ref = "master";
inputs = {
flake-utils.follows = "futils";
nixpkgs.follows = "nixpkgs";
nixpkgs-stable.follows = "nixpkgs";
};
};
2024-01-03 15:00:58 +01:00
systems = {
type = "github";
owner = "nix-systems";
repo = "default";
ref = "main";
};
2021-02-05 16:25:39 +01:00
};
# Can't eta-reduce a flake outputs...
outputs = inputs: import ./flake inputs;
2021-02-05 16:25:39 +01:00
}