mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-05 23:10:13 +00:00
start adding macos configuration
This commit is contained in:
18
hosts/macbook/default.nix
Normal file
18
hosts/macbook/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ 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
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user