split out ansible

This commit is contained in:
Andreas Zweili 2021-12-22 18:15:15 +01:00
parent 6754c7b5d3
commit 9a2b4bfec8
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@
imports = [
./common
./work-desktop.nix
./software/ansible
./software/git
./software/keeweb
./software/obsidian

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
ansible
ansible-lint
];
}