newton/radicale: first init

This commit is contained in:
Felix Buehler 2022-07-24 21:01:41 +02:00
parent 80b6c45bdc
commit 707346a81a
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
services.radicale = {
enable = true;
};
webapps.apps.radicale = {
dashboard = {
name = "Radicale";
category = "app";
icon = "sync";
link = "https://dav.buehler.rocks";
};
};
}

View file

@ -14,8 +14,12 @@
../modules/ssh.nix ../modules/ssh.nix
../modules/users.nix ../modules/users.nix
../modules/webapps/config.nix ../modules/webapps/config.nix
../modules/webapps/gitea.nix
../modules/webapps/hedgedoc.nix
../modules/webapps/homer.nix ../modules/webapps/homer.nix
../modules/webapps/navidrome.nix ../modules/webapps/navidrome.nix
../modules/webapps/paperless.nix
../modules/webapps/radicale.nix
]; ];
networking.hostName = "newton"; networking.hostName = "newton";

View file

@ -1,7 +1,6 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
boot.initrd.luks.devices."luks-drive" = { boot.initrd.luks.devices."luks-drive" = {
name = "luks-drive"; name = "luks-drive";
device = "/dev/disk/by-partlabel/Crypt"; device = "/dev/disk/by-partlabel/Crypt";