house cleaning and defaulted to zsh shell for myself

This commit is contained in:
Steven Carpenter 2023-02-12 16:54:09 -05:00
parent fccb78d1ff
commit ce24c83fbb
4 changed files with 65 additions and 47 deletions

View file

@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
tailscale
firefox
vscodium-fhs
alacritty
starship
];
programs = {
zsh.enable = lib.mkDefault true;
};
}