mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
19 lines
291 B
Nix
19 lines
291 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
|
|
];
|
|
|
|
}
|