From 5946e26cbfc93a2a9db3a2119b2518172ea2555e Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 30 Apr 2023 22:32:01 -0400 Subject: [PATCH] Add vmware workstation --- machines/levitation/home.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/machines/levitation/home.nix b/machines/levitation/home.nix index d76a295..ac2ca25 100644 --- a/machines/levitation/home.nix +++ b/machines/levitation/home.nix @@ -1,6 +1,11 @@ -{ config, lib, pkgs, ... }: - -{ +{ config, lib, pkgs, inputs, ... }: +let + system = pkgs.system; + unstable = import inputs.nixpkgs-unstable { + config = { allowUnfree = true; }; + inherit system; + }; +in { nathan = { services = { email = { enable = true; }; }; config = { isDesktop = true; }; @@ -11,7 +16,11 @@ }; }; - home.packages = with pkgs; [ gammastep fido2luks ]; + home.packages = with pkgs; [ + gammastep + fido2luks + unstable.vmware-workstation + ]; # Sway outputs wayland.windowManager.sway.config = {