mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
135 lines
4.2 KiB
Nix
135 lines
4.2 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
appCommands = {
|
|
calibre = "Calibre";
|
|
ical = "Calendar";
|
|
im = "Messages";
|
|
maps = "Maps";
|
|
music = "Music";
|
|
safari = "Safari";
|
|
settings = "System Settings";
|
|
zotero = "Zotero";
|
|
};
|
|
in {
|
|
home.file.".gnupg/gpg-agent.conf" = {
|
|
text = ''
|
|
pinentry-program "${pkgs.pinentry-touchid}/bin/pinentry-touchid"
|
|
default-cache-ttl 30
|
|
max-cache-ttl 600
|
|
'';
|
|
};
|
|
|
|
programs.zsh.shellAliases =
|
|
{
|
|
drs = "darwin-rebuild switch --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
dbs = "darwin-rebuild build --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
f = "open \"$(${config.programs.fzf.package}/bin/fzf)\"";
|
|
o = "open";
|
|
oa = "open -a";
|
|
pinentry = "${pkgs.pinentry-mac}/bin/pinentry-mac";
|
|
}
|
|
// lib.attrsets.mapAttrs (name: value: "open -a '" + value + "'") appCommands;
|
|
|
|
programs.chromium.package = pkgs.chromium-mac;
|
|
programs.firefox.package = pkgs.firefox-mac;
|
|
|
|
home.packages = with pkgs;
|
|
[
|
|
colima
|
|
pinentry-mac
|
|
pinentry-touchid
|
|
pngpaste
|
|
spoof-mac
|
|
]
|
|
++ (let
|
|
pkgs_x86_only = pkgs // {system = "x86_64-darwin";};
|
|
in (with pkgs_x86_only; [
|
|
gcc-arm-embedded
|
|
]));
|
|
|
|
targets.darwin = {
|
|
defaults = {
|
|
NSGlobalDomain = {
|
|
AppleLanguages = ["en-CA"];
|
|
AppleLocale = "en_CA";
|
|
"com.apple.sound.beep.feedback" = 1;
|
|
AppleICUForce24HourTime = true;
|
|
AppleInterfaceStyle = "Dark";
|
|
AppleMeasurementUnits = "Centimeters";
|
|
AppleMetricUnits = true;
|
|
AppleShowAllExtensions = true;
|
|
AppleShowScrollBars = "WhenScrolling";
|
|
AppleTemperatureUnit = "Celsius";
|
|
NSAutomaticCapitalizationEnabled = false;
|
|
NSAutomaticDashSubstitutionEnabled = false;
|
|
NSAutomaticPeriodSubstitutionEnabled = false;
|
|
NSAutomaticQuoteSubstitutionEnabled = false;
|
|
NSAutomaticSpellingCorrectionEnabled = false;
|
|
NSAutomaticWindowAnimationsEnabled = false;
|
|
NSDocumentSaveNewDocumentsToCloud = false;
|
|
NSNavPanelExpandedStateForSaveMode = true;
|
|
NSNavPanelExpandedStateForSaveMode2 = true;
|
|
NSTableViewDefaultSizeMode = 1;
|
|
NSTextShowsControlCharacters = true;
|
|
NSWindowResizeTime = 0.0;
|
|
};
|
|
com.apple.Safari = {
|
|
AutoOpenSafeDownloads = false;
|
|
IncludeDevelopMenu = true;
|
|
ShowFullURLInSmartSearchField = true;
|
|
};
|
|
com.apple.menuextra.clock = {
|
|
DateFormat = "EEE d MMM HH:mm:ss";
|
|
FlashDateSeparators = false;
|
|
};
|
|
com.apple.controlcenter = {
|
|
"NSStatusItem Visible AccessibilityShortcuts" = false;
|
|
"NSStatusItem Visible AirDrop" = false;
|
|
"NSStatusItem Visible Battery" = true;
|
|
"NSStatusItem Visible Bluetooth" = true;
|
|
"NSStatusItem Visible Clock" = true;
|
|
"NSStatusItem Visible Display" = false;
|
|
"NSStatusItem Visible FocusModes" = false;
|
|
"NSStatusItem Visible NowPlaying" = true;
|
|
"NSStatusItem Visible ScreenMirroring" = true;
|
|
"NSStatusItem Visible Sound" = true;
|
|
"NSStatusItem Visible StageManager" = false;
|
|
"NSStatusItem Visible UserSwitcher" = false;
|
|
"NSStatusItem Visible WiFi" = true;
|
|
};
|
|
com.apple.systempreferences = {
|
|
"com.apple.preference.battery".hasBeenWarnedAboutEnergyUsage = true;
|
|
};
|
|
com.apple.appleseed.FeedbackAssistant.Autogather = false;
|
|
com.apple.TextEdit.RichText = false;
|
|
loginwindow = {
|
|
SHOWFULLNAME = false;
|
|
GuestEnabled = false;
|
|
DisableConsoleAccess = true;
|
|
};
|
|
LaunchServices.LSQuarantine = false;
|
|
com.apple.dock = {
|
|
autohide = true;
|
|
launchanim = false;
|
|
minimize-to-application = true;
|
|
mru-spaces = false;
|
|
orientation = "bottom";
|
|
static-only = true;
|
|
tilesize = 35;
|
|
};
|
|
com.apple.driver.AppleBluetoothMultitouch.trackpad = {
|
|
FirstClickThreshold = 0;
|
|
SecondClickThreshold = 2;
|
|
Clicking = true;
|
|
};
|
|
};
|
|
currentHostDefaults = {
|
|
"com.apple.controlcenter".BatteryShowPercentage = true;
|
|
"com.apple.dock".DidPromptSearchEngineAlert = true;
|
|
};
|
|
};
|
|
}
|