mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
newton/radicale: first init
This commit is contained in:
parent
80b6c45bdc
commit
707346a81a
3 changed files with 19 additions and 1 deletions
15
nixos/modules/webapps/radicale.nix
Normal file
15
nixos/modules/webapps/radicale.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue