2022-10-30 20:14:41 -04:00
|
|
|
{ inputs, globals, ... }:
|
|
|
|
|
|
|
|
with inputs;
|
2022-06-12 17:46:26 -04:00
|
|
|
|
2022-09-09 22:16:45 -04:00
|
|
|
# System configuration for my work MacBook
|
2022-06-12 17:46:26 -04:00
|
|
|
darwin.lib.darwinSystem {
|
|
|
|
system = "x86_64-darwin";
|
|
|
|
specialArgs = { };
|
|
|
|
modules = [
|
2022-09-09 22:16:45 -04:00
|
|
|
(globals // {
|
|
|
|
user = "Noah.Masur";
|
|
|
|
gitName = "Noah-Masur_1701";
|
|
|
|
gitEmail = "Noah.Masur@take2games.com";
|
|
|
|
})
|
2022-06-12 17:46:26 -04:00
|
|
|
home-manager.darwinModules.home-manager
|
|
|
|
{
|
2022-11-03 11:24:03 -04:00
|
|
|
identityFile = "/Users/Noah.Masur/.ssh/id_ed25519";
|
2022-06-19 23:44:29 -04:00
|
|
|
gui.enable = true;
|
2022-11-16 15:52:00 -05:00
|
|
|
theme = {
|
|
|
|
colors = (import ../../modules/colorscheme/gruvbox).dark;
|
|
|
|
dark = true;
|
|
|
|
};
|
2022-06-20 14:41:36 -04:00
|
|
|
mailUser = globals.user;
|
2022-09-28 15:33:49 -04:00
|
|
|
networking.hostName = "noah-masur-mac";
|
2022-11-23 15:46:30 -07:00
|
|
|
nixpkgs.overlays = [ nur.overlay firefox-darwin.overlay ];
|
2022-09-17 21:33:57 -04:00
|
|
|
# Set registry to flake packages, used for nix X commands
|
|
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
2022-06-12 17:46:26 -04:00
|
|
|
}
|
|
|
|
../common.nix
|
2022-06-13 23:43:49 -04:00
|
|
|
../../modules/darwin
|
2022-10-31 14:45:51 -04:00
|
|
|
../../modules/mail
|
2022-06-13 23:43:49 -04:00
|
|
|
../../modules/applications/alacritty.nix
|
2022-10-31 14:45:51 -04:00
|
|
|
../../modules/applications/kitty.nix
|
2022-06-13 23:43:49 -04:00
|
|
|
../../modules/applications/discord.nix
|
2022-11-23 15:46:30 -07:00
|
|
|
../../modules/applications/firefox.nix
|
2022-07-25 23:36:06 -04:00
|
|
|
../../modules/repositories/notes.nix
|
2022-06-20 19:51:03 -04:00
|
|
|
../../modules/programming/nix.nix
|
2022-06-20 16:14:04 -04:00
|
|
|
../../modules/programming/terraform.nix
|
2022-07-01 09:04:17 -04:00
|
|
|
../../modules/programming/python.nix
|
2022-06-20 16:14:04 -04:00
|
|
|
../../modules/programming/lua.nix
|
2022-06-21 08:33:05 -04:00
|
|
|
../../modules/programming/kubernetes.nix
|
2022-06-12 17:46:26 -04:00
|
|
|
];
|
|
|
|
}
|