mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
19 lines
286 B
Nix
19 lines
286 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_full
|
||
|
lxc
|
||
|
swtpm
|
||
|
bottles
|
||
|
|
||
|
# Filesystems
|
||
|
dosfstools
|
||
|
];
|
||
|
|
||
|
}
|