nix-git/modules/dosbox-x.nix

9 lines
184 B
Nix
Raw Normal View History

2024-02-12 16:49:44 +01:00
{ config, pkgs, ... }:
{
2025-02-09 21:35:44 +01:00
users.users."yoda" = {
2024-02-12 16:49:44 +01:00
packages = with pkgs; [
dosbox-x # Virtual machines with DOS-based Windows such as Windows 3.x and Windows 9x
];
};
}