cos/winboat.nix
2025-10-28 16:21:06 -04:00

15 lines
283 B
Nix

{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
];
};
}