2023-09-04 11:40:30 -05:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
|
|
|
api-lyte-dev.url = "git+ssh://gitea@git.lyte.dev/lytedev/api.lyte.dev.git";
|
2023-09-05 15:49:05 -05:00
|
|
|
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
|
|
|
disko.url = "github:nix-community/disko/master";
|
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
|
|
|
helix.url = "github:helix-editor/helix";
|
|
|
|
rtx.url = "github:jdx/rtx";
|
2023-09-04 11:40:30 -05:00
|
|
|
};
|
|
|
|
|
2023-09-05 15:49:05 -05:00
|
|
|
outputs = inputs @ { self, ... }: {
|
2023-09-05 15:33:20 -05:00
|
|
|
diskoConfigurations = import ./disko.nix;
|
2023-09-05 22:39:17 -05:00
|
|
|
homeConfigurations = import ./home.nix inputs;
|
|
|
|
nixosConfigurations = import ./nixos.nix inputs;
|
2023-09-04 11:40:30 -05:00
|
|
|
};
|
|
|
|
}
|