33 lines
806 B
Nix
33 lines
806 B
Nix
{pkgs, ...}: {
|
|
users.users.rafiq = {
|
|
isNormalUser = true;
|
|
description = "rafiq";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
};
|
|
|
|
# Enable basic fonts for reasonable Unicode coverage
|
|
fonts.enableDefaultPackages = true;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
];
|
|
|
|
time.timeZone = "Asia/Singapore";
|
|
|
|
i18n.defaultLocale = "en_SG.UTF-8";
|
|
|
|
i18n.extraLocaleSettings = {
|
|
LC_ADDRESS = "en_SG.UTF-8";
|
|
LC_IDENTIFICATION = "en_SG.UTF-8";
|
|
LC_MEASUREMENT = "en_SG.UTF-8";
|
|
LC_MONETARY = "en_SG.UTF-8";
|
|
LC_NAME = "en_SG.UTF-8";
|
|
LC_NUMERIC = "en_SG.UTF-8";
|
|
LC_PAPER = "en_SG.UTF-8";
|
|
LC_TELEPHONE = "en_SG.UTF-8";
|
|
LC_TIME = "en_SG.UTF-8";
|
|
};
|
|
}
|