2021-12-20 23:48:26 +00:00
|
|
|
{
|
|
|
|
description = "NixOS configuration";
|
|
|
|
|
|
|
|
inputs = {
|
2022-03-02 17:28:05 +00:00
|
|
|
# nixpkgs Unstable Inputs
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager-unstable.url = "github:nix-community/home-manager";
|
|
|
|
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2022-11-11 16:32:26 +00:00
|
|
|
#nix-darwin-unstable.url = "github:lnl7/nix-darwin/master";
|
|
|
|
#nix-darwin-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2022-03-02 17:28:05 +00:00
|
|
|
|
2022-11-23 15:58:12 +00:00
|
|
|
# update whenever
|
|
|
|
nixpkgs-fixed.url = "github:nixos/nixpkgs/?branch=nixos-unstable&rev=20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8";
|
|
|
|
|
2022-11-11 16:32:26 +00:00
|
|
|
nur.url = "github:nix-community/NUR";
|
2022-05-09 09:03:00 +01:00
|
|
|
|
2021-12-26 12:38:23 +00:00
|
|
|
deploy-rs.url = "github:serokell/deploy-rs";
|
2022-11-23 15:58:12 +00:00
|
|
|
deploy-rs.inputs.nixpkgs.follows = "nixpkgs-fixed";
|
2022-03-02 17:28:05 +00:00
|
|
|
|
2022-02-08 11:30:06 +00:00
|
|
|
musicutil.url = "gitlab:ChaotiCryptidz/musicutil";
|
2022-11-23 15:58:12 +00:00
|
|
|
musicutil.inputs.nixpkgs.follows = "nixpkgs-fixed";
|
|
|
|
|
|
|
|
gitlab_archiver.url = "gitlab:ChaotiCryptidz/gitlab_archiver";
|
|
|
|
gitlab_archiver.inputs.nixpkgs.follows = "nixpkgs-fixed";
|
2022-08-12 17:06:50 +01:00
|
|
|
|
2022-08-13 22:07:50 +01:00
|
|
|
gitlab_artifacts_sync.url = "gitlab:ChaotiCryptidz/gitlab_artifacts_sync";
|
2022-11-23 15:58:12 +00:00
|
|
|
gitlab_artifacts_sync.inputs.nixpkgs.follows = "nixpkgs-fixed";
|
2021-12-20 23:48:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { ... }@inputs: import ./outputs.nix inputs;
|
|
|
|
}
|