Fri Jun 7 01:01:14 AM CEST 2024
This commit is contained in:
parent
aa8916c231
commit
414b6815df
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue