all repos — archive/nixos-configuration @ 67a97cece0f462b149514a341fb6facf3abad815

Superseded by nixfiles

Add infrastructure module

Alan Pearce
commit

67a97cece0f462b149514a341fb6facf3abad815

parent

37fff5a466ab7e2084b1a89a62602435516d51e8

3 files changed, 11 insertions(+), 0 deletions(-)

jump to
M marvin.nixmarvin.nix
@@ -24,6 +24,7 @@ ./modules/user-interface.nix
./modules/dev.nix ./modules/lisp.nix ./modules/javascript.nix + ./modules/infrastructure.nix ./modules/accounting.nix ./modules/passwords.nix ./modules/network-manager.nix
A modules/infrastructure.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + ansible + hugo + + nixops + ]; +}
M satoshipad.nixsatoshipad.nix
@@ -27,6 +27,7 @@ ./modules/dev.nix
./modules/lisp.nix ./modules/javascript.nix ./modules/satoshipay.nix + ./modules/infrastructure.nix ./modules/accounting.nix ./modules/passwords.nix ./modules/network-manager.nix