9 lines
117 B
Nix
9 lines
117 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
silo.podman.enable = false;
|
|
home.packages = with pkgs; [
|
|
ansible
|
|
openssh
|
|
];
|
|
}
|