summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-05-04 20:26:36 +0200
committerAdrian Kummerlaender2018-05-04 20:26:36 +0200
commit0dd401a70b5820b8991c0c3a62fd0661e2e463b5 (patch)
tree77b539bb15bd06d120285443497f69f1448ae0f6 /configuration.nix
parent809315abbef049369f31b2dd882606738569b7e2 (diff)
downloadnixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar.gz
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar.bz2
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar.lz
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar.xz
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.tar.zst
nixos_system-0dd401a70b5820b8991c0c3a62fd0661e2e463b5.zip
Misc updates
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix
index 8cb55a1..b318c58 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -73,7 +73,7 @@
autoLogin = true;
defaultUser = "common";
};
-
+
desktopManager.default = "none";
};
};
@@ -93,7 +93,14 @@
];
shellAliases = {
- "ls" = "ls --color --group-directories-first";
+ "ls" = "ls --color=auto --group-directories-first";
};
+
+ shellInit = ''
+ export LC_NUMERIC=de_DE.UTF8
+ export LC_TIME=de_DE.UTF8
+ export LC_MONETARY=de_DE.UTF8
+ export LC_MEASUREMENT=de_DE.UTF8
+ '';
};
}