dotfiles.nix/nixos/common/global/default.nix

28 lines
499 B
Nix
Raw Permalink Normal View History

2024-08-08 09:02:42 +08:00
{outputs, ...}: {
2024-01-14 06:29:18 +08:00
imports = [
2024-01-21 21:03:57 +08:00
./age.nix
./env.nix
2024-01-14 06:29:18 +08:00
./nix.nix
./ssh.nix
];
nixpkgs = {
overlays = [
2024-01-21 21:03:57 +08:00
# Overlays our own flake exports
2024-01-14 06:29:18 +08:00
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
];
config = {
allowUnfree = true;
};
};
i18n.defaultLocale = "en_AU.UTF-8";
time.timeZone = "Australia/Perth";
networking.domain = "kanto.dev";
hardware.enableRedistributableFirmware = true;
}