fix imports
attempt to fix imports #3 attempt to fix imports #4 attempt to fix imports #5 attempt to fix imports #6 attempt to fix imports #7 attempt to fix imports #8 Revert "attempt to fix imports #8" This reverts commit 43b115c78e85f7e68ae935dc3cae703b7730e8ba. Revert "attempt to fix imports #7" This reverts commit 588c83aba244a5d02fd811bb565984169e769ff1. Revert "attempt to fix imports #6" This reverts commit f0640591656679a2e684d2198dd808498ca9dc80. Revert "attempt to fix imports #5" This reverts commit 61bd0e180b2f5f6ea823d88fa28a696c1fa72283. Revert "attempt to fix imports #4" This reverts commit 8cf9662367ab3b3cf45df212a38844b91442df28. more attempts more attempts #2 more attempts #3 more attempts #4 more attempts #5 Revert "more attempts #5" This reverts commit 24773ffd75faa777312dda09a52a791c14c10fb2. Revert "more attempts #4" This reverts commit 68de4fabbaad8dc8764711bd7c93bfde36d11df5. more attempts #6
This commit is contained in:
parent
40651fb6b2
commit
16110bb326
2 changed files with 26 additions and 24 deletions
|
@ -13,8 +13,6 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
imports = [] ++
|
||||
(optionals cfg.enable ([]
|
||||
++ optionals cfg.enableLocale [./modules/localisation.nix]
|
||||
));
|
||||
imports = [./modules/localisation.nix]
|
||||
;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
{ config, lib, ... }: let
|
||||
cfg = config.grimmShared;
|
||||
in {
|
||||
config = with cfg; lib.mkIf (enable && enableLocale) {
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
# Select internationalisation properties.
|
||||
|
@ -22,4 +25,5 @@
|
|||
layout = "de";
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue