Initial commit.

This commit is contained in:
tonybanters
2026-02-12 01:39:58 -08:00
commit d82cd7ae26
4 changed files with 195 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
description = "Matrix Homeserver, Btw";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = {
self,
nixpkgs,
}: {
nixosConfigurations.nixos-matrix = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [./configuration.nix];
};
};
}