fixed nextcloud and put server on nixpkgs stable

This commit is contained in:
Schrottkatze 2023-02-08 12:48:31 +01:00
parent 5d24913bb9
commit a3774937b7
5 changed files with 5 additions and 3 deletions

View file

@ -8,8 +8,6 @@
with lib; with lib;
with builtins; with builtins;
{ {
imports = [ ./modules ];
nix = { nix = {
package = pkgs.nixVersions.stable; package = pkgs.nixVersions.stable;
extraOptions = '' extraOptions = ''

View file

@ -7,6 +7,7 @@
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
../common.nix ../common.nix
../modules
]; ];
jade = { jade = {

View file

@ -13,6 +13,7 @@
# "${builtins.fetchGit { url = "https://github.com/kekrby/nixos-hardware.git"; }}/apple/t2" # "${builtins.fetchGit { url = "https://github.com/kekrby/nixos-hardware.git"; }}/apple/t2"
./hardware-configuration.nix ./hardware-configuration.nix
../common.nix ../common.nix
../modules
#inputs.mms.module #inputs.mms.module
]; ];

View file

@ -13,6 +13,8 @@
./vaultwarden.nix ./vaultwarden.nix
./nextcloud.nix ./nextcloud.nix
./mumble.nix ./mumble.nix
../modules/neovim.nix
../modules/zsh.nix
]; ];
#systemd.services.wordsofgod-bot.enable = true; #systemd.services.wordsofgod-bot.enable = true;

View file

@ -12,7 +12,7 @@
}; };
package = pkgs.nextcloud25; package = pkgs.nextcloud25;
extraApps = with pkgs.nextcloud25Packages.apps; { extraApps = with pkgs.nextcloud25Packages.apps; {
inherit bookmarks calendar contacts deck keeweb mail news notes onlyoffice polls tasks twofactor_webauthn; inherit bookmarks calendar contacts news tasks;
}; };
extraAppsEnable = true; extraAppsEnable = true;
hostName = "wolke.schrottkatze.de"; hostName = "wolke.schrottkatze.de";