cos/winboat.nix

16 lines
283 B
Nix
Raw Normal View History

2025-10-28 16:21:06 -04:00
{inputs, config, pkgs, ...}:
{
config = {
virtualisation.docker.enable = true;
users.users.${config.cos.username}.extraGroups = [
"docker"
];
environment.systemPackages = [
inputs.winboat.packages.x86_64-linux.winboat
pkgs.freerdp
];
};
}