fixes
This commit is contained in:
parent
3b6b385096
commit
7b8c6d9ed8
2 changed files with 11 additions and 3 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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 = { };
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue