Add vmware host

This commit is contained in:
TheWanderingCrow 2024-09-13 17:07:00 -04:00
parent 087e35f0f6
commit 3af7fc9477

14
hosts/vmware/default.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs,
...
}:{
imports = [
./hardware-configuration.nix
../../modules
];
networking.hostName = "nixos-vmware";
environment.systemPackages = [
pkgs.git
pkgs.vim
pkgs.wget
];
}