mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-05-12 13:55:07 +02:00
enable docker like containers
This commit is contained in:
parent
3da7a685b6
commit
1411d9733d
1 changed files with 29 additions and 4 deletions
|
|
@ -66,10 +66,35 @@
|
|||
*/
|
||||
virtualisation.waydroid.enable = true;
|
||||
|
||||
security.pam.services.swaylock = {
|
||||
text = ''
|
||||
auth include login
|
||||
'';
|
||||
virtualisation = {
|
||||
waydroid.enable = true;
|
||||
libvirtd = {
|
||||
enable = true;
|
||||
qemu.swtpm.enable = true;
|
||||
qemu.ovmf = {
|
||||
enable = true;
|
||||
package = pkgs.OVMFFull;
|
||||
};
|
||||
};
|
||||
podman = {
|
||||
enable = true;
|
||||
};
|
||||
docker = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
security.pam = {
|
||||
yubico = {
|
||||
enable = true;
|
||||
debug = false;
|
||||
mode = "challenge-response";
|
||||
};
|
||||
services.swaylock = {
|
||||
text = ''
|
||||
auth include login
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue