initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

19
virtualisation.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
# Libvirt/QEMU virtualisation
programs.virt-manager.enable = true;
users.groups.libvirtd.members = [ "lebowski" ];
virtualisation.libvirtd.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
# Docker
virtualisation.docker = {
enable = true;
# Use the rootless mode - run Docker daemon as non-root user
rootless = {
enable = true;
setSocketVariable = true;
};
};
}