summary refs log tree commit diff stats
path: root/modules/programs/infrastructure.nix
blob: b41816e202d368e5ccb993e6af99d4277dba5f58 (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{ environment.systemPackages = with pkgs; [
    ansible
    hugo

    nixops
  ];
}