Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S 2c84665e96
Some checks are pending
/ test (push) Waiting to run
swapy
2025-06-19 22:02:40 -04:00

15 lines
373 B
Nix

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