25 lines
351 B
Nix
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
|
|
];
|
|
};
|
|
}
|