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