Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S 7dde5410e4
All checks were successful
/ check (push) Successful in 1m23s
/ deploy (push) Has been skipped
chore: cleanup redundant module declarations
2025-07-01 17:52:26 -04:00

30 lines
592 B
Nix

{
flake,
pkgs,
modulesPath,
...
}:
{
imports =
with builtins;
map (fn: ./${fn}) (filter (fn: fn != "default.nix") (attrNames (readDir ./.)))
++ [
flake.inputs.disko.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
zramSwap.enable = true;
nixpkgs.hostPlatform = "x86_64-linux";
nixpkgs.overlays = [
flake.inputs.self.overlays.default
# flake.inputs.deploy-rs.overlays.default
];
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
openssh
git
deploy-rs
];
}