dotfiles.nix/darwin/general.nix

28 lines
547 B
Nix
Raw Normal View History

2022-04-21 01:26:30 +00:00
{ config, pkgs, lib, ... }:
2022-01-23 01:32:58 +00:00
{
environment.systemPackages = [ pkgs.terminal-notifier ];
2022-01-23 01:32:58 +00:00
# Fonts
2022-05-08 01:43:56 +00:00
fonts.fontDir.enable = true;
2022-01-23 01:32:58 +00:00
fonts.fonts = with pkgs; [
recursive
(nerdfonts.override {
fonts = [
"FantasqueSansMono"
"JetBrainsMono"
"FiraCode"
"SourceCodePro"
];
})
];
# Keyboard
# system.keyboard.enableKeyMapping = true;
# system.keyboard.remapCapsLockToEscape = true;
# Add ability to used TouchID for sudo authentication
security.pam.enableSudoTouchIdAuth = true;
}