Files
nixos-config/hosts/common/global/default.nix
T
Miguel Palhas 3c3f66ee6d wip
2025-06-27 11:41:04 +01:00

37 lines
737 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 ];
services.geoclue2.enable = true;
}