diff options
author | Alan Pearce | 2017-09-10 13:59:26 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-10 13:59:26 +0200 |
commit | 67a97cece0f462b149514a341fb6facf3abad815 (patch) | |
tree | 0446c48542fef101917ca48d661856ced71032d2 /modules | |
parent | 37fff5a466ab7e2084b1a89a62602435516d51e8 (diff) | |
download | nixos-configuration-67a97cece0f462b149514a341fb6facf3abad815.tar.lz nixos-configuration-67a97cece0f462b149514a341fb6facf3abad815.tar.zst nixos-configuration-67a97cece0f462b149514a341fb6facf3abad815.zip |
Add infrastructure module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/infrastructure.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/infrastructure.nix b/modules/infrastructure.nix new file mode 100644 index 0000000..b41816e --- /dev/null +++ b/modules/infrastructure.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + ansible + hugo + + nixops + ]; +} |