1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00

3 Commits

3 changed files with 9 additions and 14 deletions

View File

@@ -4,18 +4,13 @@ let
cdnRoot = "/run/engiadina";
in
{
systemd.tmpfiles.rules = map tmpfilesConfig [
{
type = "d";
path = cdnRoot;
mode = "0775";
user = config.users.users.me.name;
}
{
type = "x";
path = "${cdnRoot}/*";
}
];
imports = [ <stockholm/krebs/3modules/permown.nix> ];
krebs.permown.${cdnRoot} = {
owner = config.users.users.me.name;
group = "users";
umask = "0002";
};
services.nginx = {
enable = true;

View File

@@ -93,7 +93,7 @@ in {
}
{
block = "custom";
interval = 60 * 60 * 12;
interval = 60 * 60;
command =
let
area = "states"; # "districts";

View File

@@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }:
let
nixpkgs-unstable = import <nixpkgs-unstable> {};
nixpkgs-unstable = import <nixpkgs-unstable> { config.allowUnfree = true; };
in
{
imports = [