added vm package.

This commit is contained in:
Gabe Venberg 2024-06-05 12:28:10 -05:00
parent 7d1ae316bb
commit fada583de6
4 changed files with 69 additions and 2 deletions

View file

@ -23,6 +23,7 @@ inputs.nixos-generators.nixosGenerate {
proxmoxLXC.manageHostName = false;
host.user = "gabe";
users.users.root.password="nixos";
programs.zsh.enable = true;
environment.shells = with pkgs; [zsh];
users.users.${config.host.user} = {
@ -30,6 +31,7 @@ inputs.nixos-generators.nixosGenerate {
description = "Gabe Venberg";
shell = pkgs.zsh;
extraGroups = ["wheel"];
password="nixos";
};
home-manager.users.${config.host.user} = {