Fri Jun 7 01:01:14 AM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-07 01:01:14 +02:00
parent aa8916c231
commit 414b6815df
1 changed files with 19 additions and 0 deletions

View File

@ -45,6 +45,11 @@ in
environment.systemPackages = with pkgs; [
wireguard-tools
# Podman
dive
podman-tui
docker-compose
# CUDA
pciutils
file
@ -85,6 +90,20 @@ in
};
services.udev.packages = [ pkgs.yubikey-personalization ];
services.logind.extraConfig = ''HandlePowerKey=ignore'';
# Enable common container config files in /etc/containers
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
services.ollama = {
enable = true;
acceleration = "cuda";
};
# Calendar
programs.dconf.enable = true;