-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extract the configuration of macOS languages and locale
- Loading branch information
1 parent
a34ed0d
commit 9451c6b
Showing
3 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ user, ... }: | ||
|
||
{ | ||
home-manager.users.${user.accountName}.targets.darwin.defaults.NSGlobalDomain = { | ||
AppleLanguages = [ "en" ]; | ||
AppleLocale = "en_GB@currency=GBP"; | ||
|
||
AppleMeasurementUnits = "Centimeters"; | ||
AppleMetricUnits = true; | ||
AppleTemperatureUnit = "Celsius"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters