nixos-config/modules/local-dev.nix
2023-04-14 23:51:52 +03:00

22 lines
No EOL
495 B
Nix

# Local developpement
{ lib, pkgs, ... }:
{
virtualisation = {
docker.enable = true;
docker.rootless = {
enable = true;
setSocketVariable = true;
};
libvirtd.enable = true;
lxd.enable = true;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
(import (fetchTarball https://github.com/cachix/devenv/archive/v0.6.2.tar.gz)).default
direnv
virt-manager
zola
];
}