about summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-01 19:28:33 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-01 19:28:33 -0700
commitd4dcdf6fffa28beb7d328ee08e3c4e1bb40e5ebd (patch)
treea5e7001bc9e0a30bef85f28f45620a3d4f251e5a /profiles
parenthome/packages: rewrite scripts to use writeShellApplication (diff)
downloadworld-d4dcdf6fffa28beb7d328ee08e3c4e1bb40e5ebd.tar.gz
profiles/workstation: reduce the number of moving parts
There's too many moving parts and layers of abstractions, for no
benefits: I only have to manage 3-4 machines.

Going to create profiles, move things there, and stop with the `enable`
pattern.
Diffstat (limited to '')
-rw-r--r--profiles/workstation.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/profiles/workstation.nix b/profiles/workstation.nix
new file mode 100644
index 0000000..484d110
--- /dev/null
+++ b/profiles/workstation.nix
@@ -0,0 +1,6 @@
+{ pkgs, config, lib, ... }:
+{
+  virtualisation.docker.enable = false;
+  virtualisation.podman.enable = true;
+  virtualisation.podman.dockerCompat = true;
+}