2024-08-08 04:34:03 +02:00
|
|
|
{ lib, modulesPath, ... }:
|
2024-01-20 18:12:32 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2024-08-08 04:34:03 +02:00
|
|
|
"${modulesPath}/virtualisation/qemu-vm.nix"
|
|
|
|
../nix-os/account.nix
|
2024-01-20 18:12:32 +01:00
|
|
|
../nix-os/core.nix
|
2024-08-08 16:49:01 +02:00
|
|
|
../nix-os/core-desktop.nix
|
2024-01-20 18:12:32 +01:00
|
|
|
../nix-os/locale.nix
|
2024-08-08 04:34:03 +02:00
|
|
|
../nix-os/polkit/disable-shutdown.nix
|
|
|
|
../nix-os/shell.nix
|
2024-05-27 01:56:50 +02:00
|
|
|
../nix-os/udev.nix
|
2024-08-08 04:34:03 +02:00
|
|
|
../nix-os/xdg-default-apps.nix
|
2024-01-20 18:12:32 +01:00
|
|
|
];
|
2024-08-08 04:34:03 +02:00
|
|
|
|
|
|
|
config = {
|
|
|
|
services.syncthing.enable = lib.mkForce false;
|
|
|
|
virtualisation = {
|
|
|
|
memorySize = 4096;
|
|
|
|
};
|
2024-10-02 18:31:10 +02:00
|
|
|
virtualisation.forwardPorts = [
|
|
|
|
{ from = "host"; host.port = 2222; guest.port = 22; }
|
|
|
|
];
|
2024-08-08 04:34:03 +02:00
|
|
|
};
|
|
|
|
}
|