mirror of
https://github.com/larstvei/nix-config.git
synced 2026-03-04 05:00:12 +00:00
29 lines
464 B
Nix
29 lines
464 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
self.nixosModules.base
|
|
self.darwinModules.base
|
|
];
|
|
|
|
system.primaryUser = "larstvei";
|
|
|
|
networking.hostName = "larstvei-macbookpro";
|
|
|
|
users.users.larstvei = {
|
|
home = "/Users/larstvei";
|
|
shell = pkgs.fish;
|
|
};
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = { inherit inputs; };
|
|
users.larstvei.imports = [ self.homeModules.full ];
|
|
};
|
|
}
|