nixfiles/flake.nix

35 lines
1.2 KiB
Nix
Raw Normal View History

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
tree-input.url = "github:kittywitch/tree";
tree-input.inputs.nixpkgs.follows = "nixpkgs-unstable";
# update whenever
nixpkgs-fixed.url = "github:nixos/nixpkgs/?branch=nixos-unstable&rev=652e92b8064949a11bc193b90b74cb727f2a1405";
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";
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";
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";
gitlab_artifacts_sync.inputs.nixpkgs.follows = "nixpkgs-fixed";
2021-12-20 23:48:26 +00:00
};
outputs = {...} @ inputs: import ./outputs.nix inputs;
2021-12-20 23:48:26 +00:00
}