aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
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
+ ];
+}