mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
29 lines
498 B
Nix
29 lines
498 B
Nix
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
virtualisation.docker.enable = true;
|
||
|
|
|
||
|
|
virtualisation.libvirtd = {
|
||
|
|
enable = true;
|
||
|
|
qemu.swtpm.enable = true;
|
||
|
|
};
|
||
|
|
programs.virt-manager.enable = true;
|
||
|
|
|
||
|
|
programs.adb.enable = true;
|
||
|
|
users.users.thiloho.extraGroups = [ "adbusers" ];
|
||
|
|
|
||
|
|
programs.nix-ld = {
|
||
|
|
enable = true;
|
||
|
|
libraries = with pkgs; [
|
||
|
|
nodejs
|
||
|
|
nodePackages.pnpm
|
||
|
|
];
|
||
|
|
};
|
||
|
|
|
||
|
|
programs.gnupg.agent = {
|
||
|
|
enable = true;
|
||
|
|
enableSSHSupport = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
programs.java.enable = true;
|
||
|
|
}
|