Files
nix/hosts/common/global/default.nix
T
Miguel Palhas b58dc91ae5 updates
2024-11-17 11:05:05 +00:00

36 lines
702 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
inputs.home-manager.nixosModules.home-manager
./nix.nix
./ssh.nix
];
environment.systemPackages = with pkgs; [
python3
gcc
gnumake
];
time = {
timeZone = "Europe/Lisbon";
};
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "pt_PT.UTF-8";
LC_IDENTIFICATION = "pt_PT.UTF-8";
LC_MEASUREMENT = "pt_PT.UTF-8";
LC_MONETARY = "pt_PT.UTF-8";
LC_NAME = "pt_PT.UTF-8";
LC_NUMERIC = "pt_PT.UTF-8";
LC_PAPER = "pt_PT.UTF-8";
LC_TELEPHONE = "pt_PT.UTF-8";
LC_TIME = "pt_PT.UTF-8";
};
};
services.dbus.packages = with pkgs; [ gcr ];
}