From d4dcdf6fffa28beb7d328ee08e3c4e1bb40e5ebd Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 1 May 2023 19:28:33 -0700 Subject: 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. --- profiles/workstation.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 profiles/workstation.nix (limited to 'profiles') 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; +} -- cgit v1.2.3