Add vmware workstation
This commit is contained in:
parent
e54782f5ed
commit
5946e26cbf
|
@ -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 = {
|
nathan = {
|
||||||
services = { email = { enable = true; }; };
|
services = { email = { enable = true; }; };
|
||||||
config = { isDesktop = 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
|
# Sway outputs
|
||||||
wayland.windowManager.sway.config = {
|
wayland.windowManager.sway.config = {
|
||||||
|
|
Loading…
Reference in New Issue