c5209b0d90
need to add all my stuff btw
16 lines
191 B
Nix
16 lines
191 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
}:
|
|
let
|
|
cfg = config.workstation.virtualization.lima;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
lima
|
|
];
|
|
};
|
|
}
|