nix-files/modules/default.nix

28 lines
415 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
2022-06-07 00:35:28 +00:00
{
imports = [
./dns.nix
2023-01-08 05:24:56 +00:00
./feeds.nix
2023-01-03 08:27:28 +00:00
./fs
./ids.nix
./programs
2022-06-23 22:31:19 +00:00
./image.nix
2023-01-06 10:04:51 +00:00
./persist
./ports.nix
./root-on-tmpfs.nix
./services
2022-12-30 04:30:41 +00:00
./sops.nix
2023-01-08 03:07:20 +00:00
./ssh.nix
2024-03-16 17:21:34 +00:00
./users
./vpn.nix
2024-02-20 11:19:12 +00:00
./warnings.nix
2023-09-27 01:04:53 +00:00
./wowlan.nix
2022-06-07 00:35:28 +00:00
];
_module.args = rec {
sane-lib = import ./lib { inherit lib; };
sane-data = import ./data { inherit lib sane-lib; };
};
2022-06-07 00:35:28 +00:00
}