mirror of
https://github.com/larstvei/nix-config.git
synced 2025-08-31 05:10:12 +00:00
17 lines
313 B
Nix
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 ];
|
|
};
|
|
}
|