more buldak configuration

This commit is contained in:
chloe 2025-09-27 04:09:32 +02:00
parent 43733e4a4a
commit 9d41a6fa81
4 changed files with 94 additions and 14 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zathura
bitwarden
nil
obs-studio
osu-lazer-bin
];
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
};
};
}