finally system boots with new config

need to add all my stuff btw
This commit is contained in:
2026-07-11 23:14:30 -05:00
parent bbdb6339b0
commit c5209b0d90
17 changed files with 578 additions and 252 deletions
+13 -5
View File
@@ -1,7 +1,15 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
lima
];
config,
lib,
pkgs,
}:
let
cfg = config.workstation.virtualization.lima;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
lima
];
};
}