summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--machines/work.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/machines/work.nix b/machines/work.nix
index c987b79..956d984 100644
--- a/machines/work.nix
+++ b/machines/work.nix
@@ -1,10 +1,10 @@
-{ self, pkgs, ... }: {
+{ self, pkgs, lib, ... }: with lib; {
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
- [ pkgs.vim
- pkgs.podman
+ [ pkgs.podman
pkgs.qemu
+ pkgs.kitty
];
services.tailscale.enable = true;
@@ -31,4 +31,6 @@
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
+ users.users.${ivi.username}.shell = pkgs.bashInteractive;
+ environment.shells = [pkgs.bashInteractive];
}