51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{
|
|
description = "dadada's nix flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-23.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
homePage = {
|
|
url = "github:dadada/dadada.li";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
recipemd = {
|
|
url = "github:dadada/recipemd/nix-flake";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
agenix = {
|
|
url = "github:ryantm/agenix/0.13.0";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
devshell = {
|
|
url = "github:numtide/devshell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixos-generators = {
|
|
url = "github:nix-community/nixos-generators";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
flake-registry = {
|
|
url = "github:NixOS/flake-registry";
|
|
flake = false;
|
|
};
|
|
jujutsu = {
|
|
url = "github:martinvonz/jj";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
};
|
|
|
|
outputs = { ... } @ args: import ./outputs.nix args;
|
|
|
|
nixConfig = {
|
|
extra-trusted-public-keys = "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=";
|
|
extra-substituters = "https://nix-community.cachix.org/";
|
|
extra-trusted-substituters = "https://nix-community.cachix.org/";
|
|
};
|
|
}
|