summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/vm-aarch64.nix14
1 files changed, 13 insertions, 1 deletions
diff --git a/machines/vm-aarch64.nix b/machines/vm-aarch64.nix
index 9832eb2..768e669 100644
--- a/machines/vm-aarch64.nix
+++ b/machines/vm-aarch64.nix
@@ -1,8 +1,20 @@
# https://github.com/mitchellh/nixos-config/blob/main/machines/vm-aarch64-prl.nix
-{ config, pkgs, lib, ... }: {
+{ self, config, pkgs, lib, ... }: {
+ imports =
+ [ (self + "/profiles/vmware-guest.nix")
+ ];
system.stateVersion = "24.05";
+ virtualisation.vmware.guest.enable = true;
sops.age.keyFile = "${config.hm.xdg.configHome}/sops/age/keys.txt";
+ users.users.${lib.ivi.username} = {
+ shell = pkgs.zsh;
+ };
+ environment.shells = [pkgs.bashInteractive pkgs.zsh];
+ environment.pathsToLink = [ "/share/zsh" ];
+ programs.zsh.enable = true;
+ services.xserver.displayManager.sessionCommands = ''
+ '';
services.openssh.enable = true;
services.openssh.settings.PasswordAuthentication = true;