feat: fw remove unstable packages

This commit is contained in:
2025-10-23 02:53:58 +02:00
parent eccac4d4a2
commit aaf5f79895
2 changed files with 4 additions and 12 deletions

View File

@@ -2,10 +2,6 @@
let
hostname = "vscode-server";
unstable = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {
config = config.nixpkgs.config;
system = pkgs.system;
};
in {
microvm.vms.${hostname} = {
autostart = true;
@@ -24,7 +20,7 @@ in {
};
environment.systemPackages = [
unstable.ddev
pkgs.ddev
];
# Docker is required for ddev
@@ -37,4 +33,4 @@ in {
mac = "02:00:00:00:01:01";
}];
};
}
}