diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-02 07:51:56 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-02 07:51:56 -0700 |
commit | b1ffabc10483067a2a402a945821ead78bfa4f84 (patch) | |
tree | d5ea8202a992c28793781a73769ed8ae05af1c73 /modules | |
parent | profiles/workstation: consolidate sound related configurations (diff) | |
download | world-b1ffabc10483067a2a402a945821ead78bfa4f84.tar.gz |
profiles: create default and server
The NAS and the router are "servers", and we create a base profile for them. We add a default profile that will set things that are common to all my hosts, and we start with the locales. Update tahoe/carmel to use the server profile.
Diffstat (limited to '')
-rw-r--r-- | modules/system/default.nix | 1 | ||||
-rw-r--r-- | profiles/default.nix (renamed from modules/system/locale/default.nix) | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/modules/system/default.nix b/modules/system/default.nix index bf3e367..22ba97e 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -7,7 +7,6 @@ ./console ./documentation ./fonts - ./locale ./nix ./packages ./security diff --git a/modules/system/locale/default.nix b/profiles/default.nix index 2026764..f415edf 100644 --- a/modules/system/locale/default.nix +++ b/profiles/default.nix @@ -1,5 +1,5 @@ -# Language settings -{ ... }: { +{ pkgs, config, lib, ... }: +{ # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; |