nixos/darwin/jakehillion-mba-m2-15/configuration.nix

25 lines
351 B
Nix
Raw Normal View History

2024-09-05 00:30:25 +01:00
{ 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; [
htop
mosh
neovim
nix
];
};
}