added some stuff

This commit is contained in:
fwastring 2025-08-29 12:32:51 +02:00
parent 9403421b79
commit fef9a44ebd
10 changed files with 343 additions and 36 deletions

View file

@ -18,6 +18,7 @@
../../config/lsp.nix
../../config/network.nix
../../config/system.nix
../../config/k3s.nix
];
nixpkgs = {
overlays = [
@ -53,9 +54,23 @@
auto-optimise-store = true;
};
virtualisation.docker = {
enable = true;
liveRestore = false;
# 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;
# };
docker = {
enable = true;
liveRestore = false;
};
};
networking.networkmanager.enable = true;