Files
nixos/modules/system/default.nix
T
2025-12-23 18:43:43 +00:00

15 lines
293 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
];
}