2022-06-12 21:46:26 +00:00
|
|
|
{ nixpkgs, darwin, home-manager, nur, globals, ... }:
|
|
|
|
|
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-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-10-16 14:20:50 +00:00
|
|
|
identityFile = "/home/${globals.user}/.ssh/id_ed25519";
|
2022-06-20 03:44:29 +00:00
|
|
|
gui.enable = true;
|
2022-07-26 03:36:06 +00:00
|
|
|
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
2022-06-20 18:41:36 +00:00
|
|
|
mailUser = globals.user;
|
2022-09-28 19:33:49 +00:00
|
|
|
networking.hostName = "noah-masur-mac";
|
2022-06-12 21:46:26 +00:00
|
|
|
nixpkgs.overlays = [ nur.overlay ];
|
2022-09-18 01:33:57 +00:00
|
|
|
# Set registry to flake packages, used for nix X commands
|
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
2022-06-12 21:46:26 +00:00
|
|
|
}
|
|
|
|
../common.nix
|
2022-06-14 03:43:49 +00:00
|
|
|
../../modules/darwin
|
|
|
|
../../modules/applications/alacritty.nix
|
|
|
|
../../modules/applications/discord.nix
|
2022-07-26 03:15:26 +00:00
|
|
|
../../modules/mail/himalaya.nix
|
2022-07-26 03:36:06 +00:00
|
|
|
../../modules/repositories/notes.nix
|
2022-06-20 23:51:03 +00:00
|
|
|
../../modules/programming/nix.nix
|
2022-06-20 20:14:04 +00:00
|
|
|
../../modules/programming/terraform.nix
|
2022-07-01 13:04:17 +00:00
|
|
|
../../modules/programming/python.nix
|
2022-06-20 20:14:04 +00:00
|
|
|
../../modules/programming/lua.nix
|
2022-06-21 12:33:05 +00:00
|
|
|
../../modules/programming/kubernetes.nix
|
2022-06-12 21:46:26 +00:00
|
|
|
];
|
|
|
|
}
|