mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
19 lines
281 B
Nix
19 lines
281 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Various packages related to virtualization, compatability and sandboxing
|
|
home.packages = with pkgs; [
|
|
# Virtual Machines and wine
|
|
libvirt
|
|
virt-manager
|
|
qemu
|
|
lxc
|
|
swtpm
|
|
bottles
|
|
|
|
# Filesystems
|
|
dosfstools
|
|
];
|
|
|
|
}
|