sorry but this ones just lots of shit
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
|
||||
let
|
||||
cfg = config.system.podman;
|
||||
in
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.system.podman;
|
||||
in {
|
||||
options.system.podman = {
|
||||
enable = lib.mkEnableOption "enables podman";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
||||
# install the binary for compose
|
||||
environment.systemPackages = with pkgs; [ podman-compose ];
|
||||
environment.systemPackages = with pkgs; [podman-compose];
|
||||
|
||||
virtualisation = {
|
||||
oci-containers.backend = "podman";
|
||||
|
||||
Reference in New Issue
Block a user