Files
nixos/modules/system/default.nix
T
2025-12-23 19:01:28 +00:00

16 lines
309 B
Nix

{pkgs, ...}: {
imports = [
../../system/boot.nix
../../system/amd.nix
../../system/hardware.nix
../../system/home-manager.nix
../../system/services.nix
../../system/user.nix
../../system/version.nix
];
environment.systemPackages = with pkgs; [
git
cloudflared
];
}