mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-04-02 16:55:59 +02:00
12 lines
221 B
Nix
12 lines
221 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
user = config.yoda.user;
|
|
in
|
|
{
|
|
users.users."${user}" = {
|
|
packages = with pkgs; [
|
|
dosbox-x # Virtual machines with DOS-based Windows such as Windows 3.x and Windows 9x
|
|
];
|
|
};
|
|
}
|