mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
format all
This commit is contained in:
parent
091cfbdf96
commit
bcf0553529
40 changed files with 271 additions and 140 deletions
|
|
@ -1,13 +1,15 @@
|
|||
{config, ...}: let
|
||||
{ config, ... }:
|
||||
let
|
||||
domain = "files.cleslie.uk";
|
||||
in {
|
||||
in
|
||||
{
|
||||
services = {
|
||||
cloudflare-dyndns.domains = [domain];
|
||||
cloudflare-dyndns.domains = [ domain ];
|
||||
copyparty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
i = "127.0.0.1";
|
||||
p = [3210];
|
||||
p = [ 3210 ];
|
||||
};
|
||||
accounts = {
|
||||
c.passwordFile = config.age.secrets.copyparty-c.path;
|
||||
|
|
@ -16,13 +18,13 @@ in {
|
|||
"/media" = {
|
||||
path = "/var/lib/media/library";
|
||||
access = {
|
||||
rw = ["c"];
|
||||
rw = [ "c" ];
|
||||
};
|
||||
};
|
||||
"/paperless" = {
|
||||
path = "/var/lib/paperless";
|
||||
access = {
|
||||
rw = ["c"];
|
||||
rw = [ "c" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue