NixOS + home-manager configs, mirrored from GitLab SaaS.
gitlab.com/andreijiroh-dev/nixops-config
nix-flake
nixos
home-manager
nixpkgs
nix-flakes
1{ config, pkgs, lib, ... }:
2
3{
4 # Set your time zone.
5 time = {
6 timeZone = "Asia/Manila";
7 # since we're no longer being taken ahold by Windows 11 slavery in terms of hw clock
8 # confusion, we cn set this to false to use UTC.
9 hardwareClockInLocalTime = false;
10 };
11
12 # Select internationalisation properties.
13 i18n = {
14 defaultLocale = "en_PH.UTF-8";
15 extraLocaleSettings = {
16 LC_ADDRESS = "en_PH.UTF-8";
17 LC_IDENTIFICATION = "en_PH.UTF-8";
18 LC_MEASUREMENT = "en_PH.UTF-8";
19 LC_MONETARY = "en_PH.UTF-8";
20 LC_NAME = "en_PH.UTF-8";
21 LC_NUMERIC = "en_PH.UTF-8";
22 LC_PAPER = "en_PH.UTF-8";
23 LC_TELEPHONE = "en_PH.UTF-8";
24 LC_TIME = "en_PH.UTF-8";
25 };
26 supportedLocales = [
27 "all" # bless anyone here
28 ];
29 };
30}