This commit is contained in:
Clayton Hickey 2025-10-28 16:21:06 -04:00
parent 8919117ed5
commit bcc089232a
4 changed files with 43 additions and 2 deletions

15
winboat.nix Normal file
View file

@ -0,0 +1,15 @@
{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
];
};
}