From 3c0ce6e60b69fbd7236aadd0b339341709c360bc Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 12 Aug 2025 10:05:08 -0700 Subject: use podman for containers on nixos --- profiles/admin-user/user.nix | 1 - profiles/server.nix | 3 --- profiles/services/podman.nix | 5 +++++ 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 profiles/services/podman.nix (limited to 'profiles') diff --git a/profiles/admin-user/user.nix b/profiles/admin-user/user.nix index 1a6b1dc..d500650 100644 --- a/profiles/admin-user/user.nix +++ b/profiles/admin-user/user.nix @@ -16,7 +16,6 @@ ]; extraGroups = [ "wheel" - "docker" ]; }; }; diff --git a/profiles/server.nix b/profiles/server.nix index 9f9e01c..6fe6f22 100644 --- a/profiles/server.nix +++ b/profiles/server.nix @@ -8,9 +8,6 @@ ./default.nix ]; - #Virtualization settings - virtualisation.docker.enable = true; - boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernel.sysctl = { diff --git a/profiles/services/podman.nix b/profiles/services/podman.nix new file mode 100644 index 0000000..4a132d2 --- /dev/null +++ b/profiles/services/podman.nix @@ -0,0 +1,5 @@ +{ + virtualisation.podman = { + enable = true; + }; +} -- cgit v1.2.3