summaryrefslogtreecommitdiff
path: root/nixos/common/services.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nixos/common/services.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/nixos/common/services.nix b/nixos/common/services.nix
deleted file mode 100644
index 8a73d42..0000000
--- a/nixos/common/services.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{config, lib, pkgs, ...}:
-{
-
- ## VM's
- programs.dconf.enable = true;
- programs.virt-manager.enable = true;
- virtualisation = {
- docker.enable = true;
- libvirtd = {
- enable = true;
- qemu = {
- swtpm.enable = true;
- vhostUserPackages = with pkgs; [ virtiofsd ];
- ovmf.enable = true;
- ovmf.packages = [ pkgs.OVMFFull.fd ];
- };
- };
- spiceUSBRedirection.enable = true;
- };
- services.spice-vdagentd.enable = true;
-
- services.mullvad-vpn = {
- enable = true;
- package = pkgs.mullvad-vpn;
- };
-
-}