mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

Changelog: - Added AI tools and services (Ollama, SearXNG, Open WebUI) - Updated README with AI tools section and improved formatting - Added new Rust tools (`cargo-feature`, `cargo-features-manager`) - Improved virtualisation config with `nvidia-docker` - Added new work tools (`ssm-session-manager-plugin`, `redli`) - Updated Helix, Qutebrowser, and Oterm configs - Added Open WebUI and SearXNG config files
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Enable Containerd
|
|
# virtualisation.containerd.enable = true;
|
|
|
|
# Enable Docker
|
|
# virtualisation.docker = {
|
|
# enable = true;
|
|
# rootless = {
|
|
# enable = true;
|
|
# setSocketVariable = true;
|
|
# daemon.settings.features.cdi = true;
|
|
# };
|
|
# };
|
|
# users.extraGroups.docker.members = [ "xnm" ];
|
|
|
|
# Enable Podman
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
|
|
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
|
dockerCompat = true;
|
|
dockerSocket.enable = true;
|
|
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
environment.variables.DBX_CONTAINER_MANAGER = "podman";
|
|
users.extraGroups.podman.members = [ "xnm" ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nvidia-docker
|
|
# nerdctl
|
|
|
|
# firecracker
|
|
# firectl
|
|
# flintlock
|
|
|
|
distrobox
|
|
qemu
|
|
|
|
podman-compose
|
|
podman-tui
|
|
|
|
docker-compose
|
|
# lazydocker
|
|
# docker-credential-helpers
|
|
];
|
|
}
|