nixos/darwin/jakehillion-mba-m2-15/configuration.nix
Jake Hillion 39730d2ec3
All checks were successful
flake / flake (push) Successful in 1m16s
macbook: add shell utilities
2024-09-14 02:39:26 +01:00

28 lines
388 B
Nix

{ config, pkgs, ... }:
{
config = {
system.stateVersion = 4;
networking.hostName = "jakehillion-mba-m2-15";
nix = {
useDaemon = true;
};
programs.zsh.enable = true;
security.pam.enableSudoTouchIdAuth = true;
environment.systemPackages = with pkgs; [
fd
htop
mosh
neovim
nix
ripgrep
sapling
];
};
}