mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
9 lines
182 B
Nix
9 lines
182 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
dosbox-x # Virtual machines with DOS-based Windows such as Windows 3.x and Windows 9x
|
||
|
];
|
||
|
};
|
||
|
}
|