nix-files/modules/default.nix
Colin 0d99293b2f servo: split the doof/ovpns netns config into its own module
a big thing this gets me is that the attributes (like IP addresses) are now accessible via 'config' an i won't have to hardcode them so much
2024-06-17 09:25:10 +00:00

29 lines
431 B
Nix

{ lib, ... }:
{
imports = [
./dns.nix
./feeds.nix
./fs
./ids.nix
./programs
./image.nix
./netns.nix
./persist
./ports.nix
./root-on-tmpfs.nix
./services
./sops.nix
./ssh.nix
./users
./vpn.nix
./warnings.nix
./wowlan.nix
];
_module.args = rec {
sane-lib = import ./lib { inherit lib; };
sane-data = import ./data { inherit lib sane-lib; };
};
}