summaryrefslogtreecommitdiff
path: root/home/ebisu/core/system/variables/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-30 22:35:19 -0700
committerFuwn <[email protected]>2024-10-30 22:35:19 -0700
commit20a85bacc2f8c22c1c0f338c5a8872d29b432935 (patch)
treee9a6b87b8be628f163b040d035410cc5cdeb23c0 /home/ebisu/core/system/variables/default.nix
parentcore: move variables to core from kansai (diff)
downloadnixos-config-20a85bacc2f8c22c1c0f338c5a8872d29b432935.tar.xz
nixos-config-20a85bacc2f8c22c1c0f338c5a8872d29b432935.zip
core: move variables to modules
Diffstat (limited to 'home/ebisu/core/system/variables/default.nix')
-rw-r--r--home/ebisu/core/system/variables/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/home/ebisu/core/system/variables/default.nix b/home/ebisu/core/system/variables/default.nix
new file mode 100644
index 0000000..307f578
--- /dev/null
+++ b/home/ebisu/core/system/variables/default.nix
@@ -0,0 +1,16 @@
+{
+ pkgs,
+ ...
+}:
+{
+ imports = [
+ ./cleanup.nix
+ ./default-programs.nix
+ ./less.nix
+ ./settings.nix
+ ./xdg.nix
+ ];
+
+ # https://github.com/nix-community/home-manager/issues/354#issuecomment-475803163
+ home.sessionVariables.LOCALES_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
+}