infra/config/default.nix

16 lines
237 B
Nix
Raw Normal View History

2024-09-18 16:10:20 +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-09-18 16:10:20 +02: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
}