Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S 906179fbed
file location adjustments
disko may not be required here depending on the fact we are leveraging
lxc containers
2025-06-14 06:01:03 -04:00

14 lines
307 B
Nix

{ flake, ... }:
{
imports =
with builtins;
map (fn: ./${fn}) (filter (fn: fn != "default.nix") (attrNames (readDir ./.)))
++ [
flake.inputs.disko.nixosModules.default
];
nixpkgs.overlays = [ flake.inputs.self.overlays.default ];
services.tailscale = {
enable = true;
};
}