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

35 lines
731 B
Nix
Raw Normal View History

2024-01-21 21:03:57 +08:00
{ inputs, outputs, ... }:
2024-01-14 06:29:18 +08:00
{
imports = [
2024-01-21 21:03:57 +08:00
inputs.home-manager.nixosModules.home-manager
inputs.agenix.nixosModules.default
inputs.agenix-rekey.nixosModules.default
./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 exported from other flakes
inputs.agenix-rekey.overlays.default
# 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;
}