working nextcloud configuration

This commit is contained in:
Noah Masur
2022-10-02 20:54:26 +00:00
parent f196f546b8
commit 2434376963
6 changed files with 123 additions and 0 deletions

View File

@ -11,11 +11,17 @@ nixpkgs.lib.nixosSystem {
networking.hostName = "oracle";
bookServer = "books.masu.rs";
streamServer = "stream.masu.rs";
nextcloudServer = "cloud.masu.rs";
gui.enable = false;
colorscheme = (import ../../modules/colorscheme/gruvbox);
passwordHash = null;
publicKey =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s";
nextcloudS3 = {
bucket = "noahmasur-nextcloud";
hostname = "s3.us-west-002.backblazeb2.com";
key = "0026b0e73b2e2c80000000003";
};
}
./hardware-configuration.nix
../common.nix
@ -25,5 +31,6 @@ nixpkgs.lib.nixosSystem {
../../modules/services/sshd.nix
../../modules/services/calibre.nix
../../modules/services/jellyfin.nix
../../modules/services/nextcloud.nix
];
}