dotfiles.nix/darwin/general.nix

31 lines
581 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; [
2022-11-20 15:38:04 +00:00
borg-sans-mono
inter
2022-01-23 01:32:58 +00:00
recursive
(nerdfonts.override {
fonts = [
2022-11-20 15:38:04 +00:00
"CascadiaCode"
"iA-Writer"
"Inconsolata"
2022-01-23 01:32:58 +00:00
"FiraCode"
2022-11-20 15:38:04 +00:00
"Lilex"
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;
}