summaryrefslogtreecommitdiff
path: root/machines/vm-aarch64.nix
diff options
context:
space:
mode:
authorMike Vink <ivi@vinkies.net>2024-08-26 10:00:38 +0200
committerMike Vink <ivi@vinkies.net>2024-08-26 10:00:50 +0200
commitccd644c21ebe8a81806bf5c880ba204e2ebd1cf4 (patch)
tree22f72b993fb1f61c6fc62091db442c59882005f9 /machines/vm-aarch64.nix
parent13c3bd8573543493df392bc21630960029c921d2 (diff)
update
Diffstat (limited to 'machines/vm-aarch64.nix')
-rw-r--r--machines/vm-aarch64.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/machines/vm-aarch64.nix b/machines/vm-aarch64.nix
index 17e6004..5ba1837 100644
--- a/machines/vm-aarch64.nix
+++ b/machines/vm-aarch64.nix
@@ -1,5 +1,5 @@
# https://github.com/mitchellh/nixos-config/blob/main/machines/vm-aarch64-prl.nix
-{ self, config, pkgs, lib, ... }: {
+{ self, config, pkgs, lib, ... }: with lib; {
imports =
[ (self + "/profiles/vmware-guest.nix")
];
@@ -32,9 +32,8 @@
services.pcscd.enable = true;
sops.age.keyFile = "${config.hm.xdg.configHome}/sops/age/keys.txt";
- users.users.${lib.ivi.username} = {
- shell = pkgs.zsh;
- };
+ my.shell = pkgs.zsh;
+
environment.shells = [pkgs.bashInteractive pkgs.zsh];
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh.enable = true;