nix-config/modules/default.nix
Bruno BELANYI e09da8505e services: move 'media' to 'modules' instead
Its not actually a service, but more of a configuration needed by some
services. Therefore it belongs in modules.
2021-03-07 18:39:42 +00:00

15 lines
173 B
Nix

# Common modules
{ ... }:
{
imports = [
./ergodox.nix
./language.nix
./media.nix
./networking.nix
./nix.nix
./packages.nix
./users.nix
];
}