nix-config/hosts/macbook/default.nix

15 lines
265 B
Nix

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