Added copySysConf module.

This commit is contained in:
Kevin Baensch 2019-04-18 07:40:47 +02:00
parent 9aced6065b
commit 82028fd0e1
3 changed files with 56 additions and 1 deletions

View file

@ -5,6 +5,7 @@ with lib;
{
imports = [
../../options/machine.nix
../../options/copySysConf.nix
];
config.machine = {
@ -43,4 +44,9 @@ with lib;
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
};
};
config.system.copySysConf = {
enable = true;
addToNixPath = false;
};
}