Add libuuid

This commit is contained in:
Ethan Lane 2024-08-16 18:29:34 +01:00
parent ffec07ff7b
commit 8e42b57558

View file

@ -138,10 +138,18 @@
};
};
environment.systemPackages = with pkgs; [
docker
gnome.gnome-keyring
];
environment = {
systemPackages = with pkgs; [
docker
gnome.gnome-keyring
libuuid
];
sessionVariables = {
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath [pkgs.libuuid]}";
};
};
virtualisation = {
docker.enable = true;