Rupert: Adapt for 24.05

This commit is contained in:
fruchti 2024-06-02 11:06:30 +02:00
parent ef69748075
commit 76cabab60a
2 changed files with 11 additions and 7 deletions

View file

@ -4,12 +4,14 @@
enable = true;
windowManager.bspwm.enable = true;
displayManager = {
defaultSession = "none+bspwm";
lightdm.enable = true;
autoLogin.enable = true;
autoLogin.user = "waldi";
};
};
services.displayManager = {
defaultSession = "none+bspwm";
autoLogin.enable = true;
autoLogin.user = "waldi";
};
services.unclutter-xfixes = {
enable = true;

View file

@ -9,14 +9,16 @@ in
package = pkgs.nextcloud28;
hostName = hostName;
datadir = "/data/nextcloud";
settings = {
trusted_domains = [
((lib.toLower config.networking.hostName) + ".lan")
(lib.toLower config.networking.hostName)
];
};
config = {
dbtype = "pgsql";
dbhost = "/run/postgresql";
adminpassFile = "/secrets/nextcloud_admin_password.txt";
extraTrustedDomains = [
((lib.toLower config.networking.hostName) + ".lan")
(lib.toLower config.networking.hostName)
];
};
caching.redis = true;
};