mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-26 14:15:36 +00:00
19 lines
417 B
Nix
19 lines
417 B
Nix
|
{ nixpkgs, darwin, home-manager, nur, globals, ... }:
|
||
|
|
||
|
# System configuration for my MacBook
|
||
|
darwin.lib.darwinSystem {
|
||
|
system = "x86_64-darwin";
|
||
|
specialArgs = { };
|
||
|
modules = [
|
||
|
globals
|
||
|
home-manager.darwinModules.home-manager
|
||
|
{
|
||
|
networking.hostName = "desktop";
|
||
|
gui.enable = true;
|
||
|
gui.compositor.enable = true;
|
||
|
nixpkgs.overlays = [ nur.overlay ];
|
||
|
}
|
||
|
../common.nix
|
||
|
];
|
||
|
}
|