2021-12-20 23:48:26 +00:00
|
|
|
{
|
|
|
|
description = "NixOS configuration";
|
|
|
|
|
|
|
|
inputs = {
|
2023-05-03 16:45:10 +01:00
|
|
|
# flake-utils which everyone uses for default systems list
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
# flake-compat which is used for non-flake stuff but added anyway to reduce dupes
|
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2022-03-02 17:28:05 +00:00
|
|
|
# nixpkgs Unstable Inputs
|
2024-09-04 19:54:16 +01:00
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
nixpkgs-kodi-inputstream-adaptive-fork.url = "github:chaoticryptidz/nixpkgs/patch-4";
|
2023-09-16 16:06:16 +01:00
|
|
|
|
2022-03-02 17:28:05 +00:00
|
|
|
home-manager-unstable.url = "github:nix-community/home-manager";
|
|
|
|
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2023-05-03 16:45:10 +01:00
|
|
|
|
2022-12-03 16:40:50 +00:00
|
|
|
tree-input.url = "github:kittywitch/tree";
|
|
|
|
tree-input.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
|
|
|
|
2022-11-11 16:32:26 +00:00
|
|
|
nur.url = "github:nix-community/NUR";
|
2022-05-09 09:03:00 +01:00
|
|
|
|
2023-09-30 15:34:06 +01:00
|
|
|
vaultui.url = "git+https://forgejo.owo.monster/chaos/VaultUI";
|
2023-10-23 22:17:56 +01:00
|
|
|
#vaultui.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2023-09-13 16:21:54 +01:00
|
|
|
vaultui.inputs.utils.follows = "flake-utils";
|
|
|
|
vaultui.inputs.flake-compat.follows = "flake-compat";
|
|
|
|
|
2023-09-30 15:34:06 +01:00
|
|
|
musicutil.url = "git+https://forgejo.owo.monster/chaos/musicutil";
|
2023-10-23 22:17:56 +01:00
|
|
|
#musicutil.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2023-05-03 16:45:10 +01:00
|
|
|
musicutil.inputs.utils.follows = "flake-utils";
|
|
|
|
musicutil.inputs.flake-compat.follows = "flake-compat";
|
2022-11-23 15:58:12 +00:00
|
|
|
|
2023-09-30 15:34:06 +01:00
|
|
|
food-site.url = "git+https://forgejo.owo.monster/chaos/food-site";
|
2023-11-27 15:14:59 +00:00
|
|
|
#food-site.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2023-09-30 15:34:06 +01:00
|
|
|
food-site.inputs.utils.follows = "flake-utils";
|
|
|
|
food-site.inputs.flake-compat.follows = "flake-compat";
|
2021-12-20 23:48:26 +00:00
|
|
|
};
|
|
|
|
|
2024-03-19 16:42:00 +00:00
|
|
|
outputs = inputs: import ./outputs.nix inputs;
|
2021-12-20 23:48:26 +00:00
|
|
|
}
|