dotfiles.nix/darwin/general.nix

28 lines
560 B
Nix
Raw Normal View History

2022-11-20 22:07:02 +00:00
{ pkgs, ... }:
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; [
2022-11-20 15:38:04 +00:00
borg-sans-mono
2022-12-18 04:08:37 +00:00
cascadia-code
2022-11-22 01:36:15 +00:00
ia-writer-family
2022-12-18 04:08:37 +00:00
ibm-plex
2022-11-20 15:38:04 +00:00
inter
2022-01-23 01:32:58 +00:00
recursive
2022-11-21 23:15:12 +00:00
source-sans-pro
source-serif-pro
2022-12-18 04:08:37 +00:00
(nerdfonts.override { fonts = [ "CascadiaCode" ]; })
2022-01-23 01:32:58 +00:00
];
# Keyboard
# system.keyboard.enableKeyMapping = true;
# system.keyboard.remapCapsLockToEscape = true;
# Add ability to used TouchID for sudo authentication
security.pam.enableSudoTouchIdAuth = true;
}