2022-06-12 21:46:26 +00:00
|
|
|
{ nixpkgs, darwin, home-manager, nur, globals, ... }:
|
|
|
|
|
|
|
|
# System configuration for my MacBook
|
|
|
|
darwin.lib.darwinSystem {
|
|
|
|
system = "x86_64-darwin";
|
|
|
|
specialArgs = { };
|
|
|
|
modules = [
|
|
|
|
home-manager.darwinModules.home-manager
|
|
|
|
{
|
2022-06-18 17:17:11 +00:00
|
|
|
user = "Noah.Masur";
|
|
|
|
fullName = globals.fullName;
|
|
|
|
gitEmail = globals.gitEmail;
|
|
|
|
mailServer = globals.mailServer;
|
|
|
|
dotfilesRepo = globals.dotfilesRepo;
|
2022-06-18 19:45:51 +00:00
|
|
|
dotfilesPath = "/Users/Noah.Masur/dev/dotfiles";
|
2022-06-18 17:17:11 +00:00
|
|
|
gui = {
|
|
|
|
enable = true;
|
|
|
|
colorscheme = globals.gui.colorscheme;
|
|
|
|
};
|
2022-06-12 21:46:26 +00:00
|
|
|
nixpkgs.overlays = [ nur.overlay ];
|
|
|
|
}
|
|
|
|
../common.nix
|
2022-06-14 03:43:49 +00:00
|
|
|
../../modules/darwin
|
|
|
|
../../modules/applications/alacritty.nix
|
|
|
|
../../modules/applications/discord.nix
|
|
|
|
../../modules/applications/obsidian.nix
|
2022-06-12 21:46:26 +00:00
|
|
|
];
|
|
|
|
}
|