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

28 lines
388 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; [
2024-09-08 17:37:55 +01:00
fd
2024-09-05 00:30:25 +01:00
htop
mosh
neovim
nix
2024-09-08 17:37:55 +01:00
ripgrep
sapling
2024-09-05 00:30:25 +01:00
];
};
}