This commit is contained in:
Henry Hiles 2025-10-17 14:22:00 -04:00
commit 7b8c6d9ed8
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View file

@ -7,7 +7,7 @@
environment.shellAliases =
let
build = "nixos-rebuild switch --flake ~/.config/nixos#quadraticserver server --ask-sudo-password --target-host ";
build = "nixos-rebuild switch --flake ~/.config/nixos#quadraticserver --sudo --ask-sudo-password --target-host ";
in
{
clean = "nh clean all";

View file

@ -1,11 +1,19 @@
{ config, lib, ... }:
{
config,
pkgs,
lib,
...
}:
{
options.quad.matrix = {
enable = lib.mkEnableOption "matrix";
domain = lib.mkOption { type = lib.types.string; };
settings = lib.mkOption {
type = lib.types.submodule { };
type = lib.types.submodule {
freeformType = (pkgs.formats.toml { }).type;
};
default = { };
};
};