22 lines
491 B
Nix
22 lines
491 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../system/time.nix
|
|
../../system/boot.nix
|
|
../../system/amd.nix
|
|
../../system/hardware.nix
|
|
../../system/home-manager.nix
|
|
../../system/services.nix
|
|
../../system/user.nix
|
|
../../system/version.nix
|
|
../../system/fonts.nix
|
|
../../system/programs.nix
|
|
../../system/security.nix
|
|
../../system/variables.nix
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
# FIXME: must be on their own app
|
|
git
|
|
cloudflared
|
|
];
|
|
}
|