Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S fa0f331750
Some checks failed
/ check (push) Successful in 1m1s
/ deploy (push) Failing after 37s
fix: systems need openssh for deployment reasons [deploy]
2025-06-25 18:50:21 -04:00

23 lines
514 B
Nix

{ flake, pkgs, ... }:
{
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
# flake.inputs.deploy-rs.overlays.default
];
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
openssh
git
deploy-rs
];
}