diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-14 00:09:37 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-14 00:09:37 +0200 |
commit | 6997ea1d76d5e7c89b0ae14d5db6a2c31f8b6d77 (patch) | |
tree | 620308e67a9e68827ceaefe6addde059da4b0a18 | |
parent | 9ddc5be1a8107e61bcc3dd520a2187918e3df7c1 (diff) |
refactor(mcdowell): implement locale of operating-system*
-rw-r--r-- | systems/mcdowell.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index b798ebf..aabfd1a 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -75,6 +75,7 @@ (firmware* (@ (machines amd64) firmware*)) (initrd* (@ (machines amd64) initrd*)) (kernel-amd64 (@ (machines amd64) kernel-amd64)) + (polish-locale-string (@ (suweren system) polish-locale-string)) (swap-devices* (@ (machines amd64) swap-devices*))) ((@ (gnu system) operating-system) (kernel kernel-amd64) @@ -97,7 +98,7 @@ (issue %default-issue) (packages %base-packages) (timezone "Europe/Warsaw") - ;; locale* + (locale polish-locale-string) (services services-mcdowell)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |