mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 11:30:13 +00:00
24 lines
456 B
Nix
24 lines
456 B
Nix
{ pkgs, emacs-larstvei, ... }:
|
|
{
|
|
imports = [
|
|
../../modules/base
|
|
../../modules/darwin
|
|
];
|
|
|
|
system.primaryUser = "larstvei";
|
|
|
|
networking.hostName = "larstvei-macbookpro";
|
|
|
|
users.users.larstvei = {
|
|
home = "/Users/larstvei";
|
|
shell = pkgs.fish;
|
|
};
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = { inherit emacs-larstvei; };
|
|
users.larstvei.imports = [ ../../modules/home ];
|
|
};
|
|
}
|