Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S 4f88823def
Some checks are pending
/ test (push) Waiting to run
wip2
2025-06-19 22:18:57 -04:00

21 lines
486 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; [
git
];
}