Ungoof vmware
This commit is contained in:
parent
7890ae5248
commit
b7476f1622
|
@ -1,6 +1,11 @@
|
|||
{ config, lib, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
system = pkgs.system;
|
||||
unstable = import inputs.nixpkgs-unstable {
|
||||
config = { allowUnfree = true; };
|
||||
inherit system;
|
||||
};
|
||||
in {
|
||||
# Sops setup for this machine
|
||||
sops.secrets = {
|
||||
"borg-ssh-key" = {
|
||||
|
@ -96,4 +101,10 @@
|
|||
enableBookUploading = true;
|
||||
};
|
||||
};
|
||||
|
||||
# vmware
|
||||
virtualisation.vmware.host = {
|
||||
enable = true;
|
||||
package = unstable.vmware-workstation;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
{ config, lib, pkgs, inputs, ... }:
|
||||
let
|
||||
system = pkgs.system;
|
||||
unstable = import inputs.nixpkgs-unstable {
|
||||
config = { allowUnfree = true; };
|
||||
inherit system;
|
||||
};
|
||||
in {
|
||||
{ config, lib, pkgs, inputs, ... }: {
|
||||
nathan = {
|
||||
services = { email = { enable = true; }; };
|
||||
config = { isDesktop = true; };
|
||||
|
@ -16,11 +9,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gammastep
|
||||
fido2luks
|
||||
unstable.vmware-workstation
|
||||
];
|
||||
home.packages = with pkgs; [ gammastep fido2luks ];
|
||||
|
||||
# Sway outputs
|
||||
wayland.windowManager.sway.config = {
|
||||
|
|
Loading…
Reference in New Issue