Files
dotfiles/hosts/marisa/services/default.nix
2025-09-04 16:35:31 +05:30

23 lines
261 B
Nix

{ config, ... }:
{
imports = [
# ./hashicorp.nix
];
virtualisation.docker = {
enable = true;
daemon.settings = {
};
};
services = {
openssh = {
enable = true;
ports = [
22
22001
];
};
};
}