dotfiles/hosts/macbook/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2022-11-30 03:40:15 +00:00
{ inputs, globals, overlays, ... }:
with inputs;
2022-06-12 21:46:26 +00:00
2022-09-10 02:16:45 +00:00
# System configuration for my work MacBook
2022-06-12 21:46:26 +00:00
darwin.lib.darwinSystem {
system = "x86_64-darwin";
specialArgs = { };
modules = [
2022-12-21 21:18:03 +00:00
../../modules
../../darwin
2022-09-10 02:16:45 +00:00
(globals // {
user = "Noah.Masur";
gitName = "Noah-Masur_1701";
gitEmail = "Noah.Masur@take2games.com";
})
2022-06-12 21:46:26 +00:00
home-manager.darwinModules.home-manager
{
2022-12-21 21:18:03 +00:00
networking.hostName = "noah-masur-mac";
2022-11-03 15:24:03 +00:00
identityFile = "/Users/Noah.Masur/.ssh/id_ed25519";
2022-06-20 03:44:29 +00:00
gui.enable = true;
2022-11-16 20:52:00 +00:00
theme = {
2022-12-21 21:18:03 +00:00
colors = (import ../../colorscheme/gruvbox).dark;
2022-11-16 20:52:00 +00:00
dark = true;
};
2022-12-21 21:18:03 +00:00
mail.user = globals.user;
2022-11-30 03:40:15 +00:00
nixpkgs.overlays = [ firefox-darwin.overlay ] ++ overlays;
2022-09-18 01:33:57 +00:00
# Set registry to flake packages, used for nix X commands
nix.registry.nixpkgs.flake = nixpkgs;
2022-12-22 00:31:25 +00:00
mail.enable = true;
2022-12-21 21:18:03 +00:00
mail.aerc.enable = true;
mail.himalaya.enable = true;
kitty.enable = true;
discord.enable = true;
firefox.enable = true;
dotfiles.enable = true;
nixlang.enable = true;
terraform.enable = true;
python.enable = true;
lua.enable = true;
kubernetes.enable = true;
"1password".enable = true;
2022-06-12 21:46:26 +00:00
}
];
}