Commit 3dae98e9df08
Changed files (2)
systems
aomi
common
services
systems/aomi/extra.nix
@@ -12,6 +12,7 @@
../common/programs/tmux.nix
# ../common/services/networkmanager.nix
# ../common/services/fprint.nix # With yubikey I don't really need this to be honest
+ ../common/services/ansible.nix
../common/services/containers.nix
../common/services/docker.nix
../common/services/libvirt.nix
systems/common/services/ansible.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }:
+{
+ system.nixos.tags = [ "ansible" ];
+
+ environment.systemPackages = with pkgs; [
+ ansible
+ ansible-builder
+ ansible-lint
+ ];
+}