summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Vink <ivi@vinkies.net>2024-02-07 00:46:17 +0100
committerMike Vink <ivi@vinkies.net>2024-02-07 00:46:17 +0100
commit7c460caa6168fa95d526302d9186b9ffbd64d39c (patch)
treeb8483b3f3db7aab54e6dfb910cddc34dfa498276
parentb34079150f0d1842e013c414c7a97607c7ecb1c3 (diff)
shell
-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];
}