aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/macos.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-03-11 17:26:22 -0700
committerFranck Cuny <franck@fcuny.net>2024-03-11 17:26:22 -0700
commit1248d431ff09c15df666b381059efb8884718a9b (patch)
tree7959ce50cd52a99998430b13d0e47feff9630789 /hosts/common/macos.nix
parentreorganize common files for hosts (diff)
downloadinfra-1248d431ff09c15df666b381059efb8884718a9b.tar.gz
switch to absolute path
Diffstat (limited to 'hosts/common/macos.nix')
-rw-r--r--hosts/common/macos.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/hosts/common/macos.nix b/hosts/common/macos.nix
deleted file mode 100644
index edc57a0..0000000
--- a/hosts/common/macos.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ ... }: {
- system.defaults.dock.autohide = true;
- system.defaults.dock.orientation = "left";
- system.defaults.dock.showhidden = false;
- system.defaults.dock.show-recents = false;
- # don’t rearrange spaces based on the most recent use
- system.defaults.dock.mru-spaces = false;
- system.defaults.finder.AppleShowAllExtensions = true;
- system.defaults.screencapture.location = "~/Documents/screenshots";
-
- system.keyboard = {
- enableKeyMapping = true;
- remapCapsLockToControl = true;
- };
-
- system.defaults.CustomUserPreferences = {
- "com.apple.desktopservices" = {
- # Avoid creating .DS_Store files on network or USB volumes
- DSDontWriteNetworkStores = true;
- DSDontWriteUSBStores = true;
- };
- };
-}