Nixos-Configuration/modules/nixos/common/default.nix
Jermeiah S 2841978224
Some checks are pending
/ test (push) Waiting to run
git by default
2025-06-19 22:04:42 -04:00

18 lines
436 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 ];
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
git
];
}