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

Changelog: - autostart: remove hypridle from autostart script - helix: add copilot LSP for Rust, JS/TS variants - hyprland: - Refactor window rules with regex patterns - Update brightness controls for intel_backlight - Adjust pyprland scratchpad configurations - bootloader: - Add i915 kernel modules - Disable initrd verbose logging - greetd: update tuigreet command to use uwsm - hyprland: enable hyprlock, hypridle services - linux-kernel: add security hardening params - ollama: add new LLM models (gemma3, deepcoder) - utils: add sqlx-cli and kitty - kitty: add config - virtualisation: - Add lima, nerdctl - vpn: - Enable mullvad VPN - Add mullvad and tor browsers - stylus-themes: update to latest
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Enable Kasm
|
|
# services.kasmweb = {
|
|
# enable = true;
|
|
# listenPort = 9999;
|
|
# };
|
|
|
|
# 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
|
|
lima
|
|
|
|
podman-compose
|
|
podman-tui
|
|
|
|
docker-compose
|
|
# lazydocker
|
|
# docker-credential-helpers
|
|
];
|
|
}
|