infra/config/default.nix

15 lines
233 B
Nix
Raw Normal View History

2023-07-05 21:41:15 +02:00
{pkgs, ...}: {
2023-05-06 06:49:46 +02:00
imports = [
./games
./secrets
./services
./acme.nix
./network.nix
./nix.nix
./users.nix
];
2023-07-05 21:41:15 +02:00
2024-03-07 22:16:02 +01:00
environment.systemPackages = with pkgs; [wezterm.terminfo];
2024-03-09 01:05:51 +01:00
programs.git.enable = true;
2023-05-06 06:49:46 +02:00
}