nix-config/flake.nix

71 lines
1.3 KiB
Nix
Raw 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 = {
nixpkgs.follows = "nixpkgs";
};
};
futils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "main";
};
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
2022-06-22 11:19:43 +02:00
utils.follows = "futils";
};
};
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";
};
};
2021-02-05 16:25:39 +01:00
};
2021-05-31 23:01:21 +02:00
outputs =
inputs @
{ self
2021-09-25 13:30:51 +02:00
, agenix
2021-05-31 23:01:21 +02:00
, futils
, home-manager
, nixpkgs
, nur
, pre-commit-hooks
2021-05-31 23:01:21 +02:00
}:
2023-03-07 15:25:46 +01:00
import ./flake inputs;
2021-02-05 16:25:39 +01:00
}