podman + removed lima cause its more of a dev tool
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.homelab.virtualization;
|
||||
in
|
||||
{
|
||||
options.homelab.virtualization = {
|
||||
user = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "river";
|
||||
description = "The user to run virtualization services as.";
|
||||
};
|
||||
|
||||
# podman
|
||||
podman = {
|
||||
enable = lib.mkEnableOption "Podman support";
|
||||
|
||||
packages = lib.mkEnableOption "Install Relevant Podman packages" {
|
||||
enable = true;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user