diff options
author | Rory& <root@rory.gay> | 2024-02-26 15:18:33 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-02-26 15:18:33 +0100 |
commit | 9a27b12e409dabae9bedd0e08cf41e4b15e40aeb (patch) | |
tree | 43c346b101a6e07e1fa3fa84b3f33d3c8f098675 /flake.nix | |
parent | Update flake lock (diff) | |
download | Rory-Open-Architecture-9a27b12e409dabae9bedd0e08cf41e4b15e40aeb.tar.xz |
Matrix media gate
Diffstat (limited to 'flake.nix')
-rwxr-xr-x | flake.nix | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/flake.nix b/flake.nix index 752aece..a64698f 100755 --- a/flake.nix +++ b/flake.nix @@ -14,9 +14,6 @@ #url = "github:NixOS/nixpkgs/nixos-23.05"; url = "github:NixOS/nixpkgs/nixos-23.11"; }; - botcore-v4 = { - url = "gitlab:BotCore-Devs/BotCore-v4/staging"; - }; home-manager = { url = "github:nix-community/home-manager/master"; }; @@ -31,6 +28,16 @@ nixos-wsl.url = "github:nix-community/NixOS-WSL"; #inputs.nur.url = github:nix-community/NUR; + # Own projects + + botcore-v4 = { + url = "gitlab:BotCore-Devs/BotCore-v4/staging"; + }; + + MatrixMediaGate = { + url = "git+https://cgit.rory.gay/matrix/MatrixMediaGate.git/"; + }; + # Sources... nhekoSrc = { url = "github:Nheko-reborn/nheko/master"; @@ -41,14 +48,9 @@ url = "github:Nheko-reborn/mtxclient/master"; flake = false; }; - - # DO NOT TOUCH THIS UNGODLY MESS - #nix-ld.url = "github:Mic92/nix-ld"; - # this line assume that you also have nixpkgs as an input - #nix-ld.inputs.nixpkgs.follows = "nixpkgs"; }; - outputs = { self, nixpkgs, nixpkgs-RoryNix, nixpkgs-rory, home-manager, botcore-v4, conduit, nixos-wsl, ... }@inputs: { + outputs = { self, nixpkgs, nixpkgs-RoryNix, nixpkgs-rory, home-manager, botcore-v4, MatrixMediaGate, conduit, nixos-wsl, ... }@inputs: { nixosConfigurations = { #NIXPKGS FORK Rory-nginx = nixpkgs-rory.lib.nixosSystem { @@ -62,6 +64,7 @@ inherit botcore-v4; inherit home-manager; inherit conduit; + inherit MatrixMediaGate; }; }; |