nix-config/hosts/macbook/default.nix
2025-08-23 15:45:04 +02:00

17 lines
313 B
Nix

{ emacs-larstvei, ... }:
{
imports = [
../../system
../../system/darwin
];
networking.hostName = "larstvei-macbookpro";
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit emacs-larstvei; };
users.larstvei.imports = [ ../../home ];
};
}