add dav
This commit is contained in:
parent
7beeab88cc
commit
a32ad1d05e
1 changed files with 20 additions and 0 deletions
20
flake.nix
20
flake.nix
|
|
@ -197,6 +197,26 @@
|
|||
./hosts/sql
|
||||
];
|
||||
};
|
||||
nixosConfigurations."dav" = nixpkgs.lib.nixosSystem {
|
||||
#system = "x86_64-linux";
|
||||
#pkgs = import nixpkgs { inherit system; };
|
||||
inherit system;
|
||||
modules = [
|
||||
agenix.nixosModules.default
|
||||
{ environment.systemPackages = [ (agenix.packages.${system}.default) ]; }
|
||||
{
|
||||
age.secrets = {
|
||||
radicale-htpasswd = {
|
||||
file = ./secrets/radicale-htpasswd.age;
|
||||
owner = "radicale";
|
||||
group = "radicale";
|
||||
mode = "0400";
|
||||
};
|
||||
};
|
||||
}
|
||||
./hosts/dav
|
||||
];
|
||||
};
|
||||
};
|
||||
#);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue