aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-06-21 13:18:11 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-06-21 13:18:11 -0700
commit42951df89da73eb53959fde02014e8a63d56065e (patch)
tree46d4f06401eeba7662ecc7837f4827e86041aaeb /home
parent89867e408dec0c3a48bbbaec2173ee8d140f2adc (diff)
downloadnix-42951df89da73eb53959fde02014e8a63d56065e.tar
nix-42951df89da73eb53959fde02014e8a63d56065e.tar.gz
nix-42951df89da73eb53959fde02014e8a63d56065e.tar.bz2
nix-42951df89da73eb53959fde02014e8a63d56065e.tar.lz
nix-42951df89da73eb53959fde02014e8a63d56065e.tar.xz
nix-42951df89da73eb53959fde02014e8a63d56065e.tar.zst
nix-42951df89da73eb53959fde02014e8a63d56065e.zip
Add new Virtualbox VM kaitain
Diffstat (limited to 'home')
-rw-r--r--home/nipsy/kaitain.nix19
-rw-r--r--home/root/kaitain.nix6
2 files changed, 25 insertions, 0 deletions
diff --git a/home/nipsy/kaitain.nix b/home/nipsy/kaitain.nix
new file mode 100644
index 0000000..41f0d21
--- /dev/null
+++ b/home/nipsy/kaitain.nix
@@ -0,0 +1,19 @@
+{ inputs, lib, pkgs, config, outputs, ... }:
+{
+ imports = [
+ common/core
+ common/optional/desktops
+ ];
+
+ home.file.".ansible.cfg".text = ''
+ [defaults]
+ forks=5
+ timeout=600
+
+ [ssh_connection]
+ ssh_args=-o BatchMode=yes -o ControlMaster=auto -o ControlPersist=8h -o Compression=yes
+ control_path=/dev/shm/%%C
+ control_path_dir=/dev/shm
+ pipelining=True
+ '';
+}
diff --git a/home/root/kaitain.nix b/home/root/kaitain.nix
new file mode 100644
index 0000000..83c92cd
--- /dev/null
+++ b/home/root/kaitain.nix
@@ -0,0 +1,6 @@
+{ inputs, lib, pkgs, config, outputs, ... }:
+{
+ imports = [
+ common/core
+ ];
+}