.dotfiles/modules/home/server/default.nix
2025-07-17 03:18:37 +02:00

10 lines
263 B
Nix

{ self, lib, ... }:
let
importNames = lib.swarselsystems.readNix "modules/home/server";
modulesPath = "${self}/modules";
in
{
imports = lib.swarselsystems.mkImports importNames "modules/home/server" ++ [
"${modulesPath}/home/common/settings.nix"
];
}