update agenix shell pinning as a workaround for agenix las version not being properly push to nixpkgs
This commit is contained in:
parent
4e6ca1355b
commit
6525887058
4 changed files with 40 additions and 1 deletions
21
shared/mail/maddy.nix
Normal file
21
shared/mail/maddy.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
# Import nodes
|
||||
nodes = import ./../../nodes.nix;
|
||||
myName = config.hostName;
|
||||
myNode = nodes."${myName}";
|
||||
|
||||
# And mapping
|
||||
mapping = import ./../../mapping.nix;
|
||||
|
||||
in
|
||||
{
|
||||
age.secrets = {
|
||||
"tsig" = {
|
||||
file = ./../../secrets/mail/tsig.age;
|
||||
owner = "knot";
|
||||
group = "knot";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue