added nom for the build (sudo prompt won't show up but password input still works)
This commit is contained in:
parent
63e74350fb
commit
65032788b2
6 changed files with 231 additions and 177 deletions
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
|
@ -28,17 +27,11 @@
|
|||
}
|
||||
}
|
||||
'';
|
||||
# TODO: replace conduwuit with tuwunnel
|
||||
in {
|
||||
# Configure Conduit itself
|
||||
services.conduit = {
|
||||
services.matrix-continuwuity = {
|
||||
enable = true;
|
||||
|
||||
# This causes NixOS to use the flake defined in this repository instead of
|
||||
# the build of Conduit built into nixpkgs.
|
||||
package = inputs.conduwuit.packages.${pkgs.system}.default;
|
||||
# package = pkgs.conduwuit;
|
||||
|
||||
settings.global = {
|
||||
inherit server_name;
|
||||
allow_registration = false;
|
||||
|
|
|
@ -190,8 +190,14 @@
|
|||
}
|
||||
else {};
|
||||
|
||||
# Enable completion of system packages by zsh
|
||||
environment.pathsToLink = ["/share/zsh"];
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
nix-output-monitor
|
||||
];
|
||||
|
||||
# Enable completion of system packages by zsh
|
||||
pathsToLink = ["/share/zsh"];
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
backupFileExtension = "backup";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue