nixos/darwin/jakehillion-mba-m2-15/configuration.nix
Jake Hillion 3aeeb69c2b
All checks were successful
flake / flake (push) Successful in 1m13s
nix-darwin: add macbook
2024-09-05 00:50:02 +01:00

25 lines
351 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; [
htop
mosh
neovim
nix
];
};
}