2022-09-18 15:49:37 +00:00
|
|
|
{
|
|
|
|
description = "Lars' MacBook Pro";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs = {
|
2023-01-08 00:31:34 +00:00
|
|
|
url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
};
|
2022-09-18 15:49:37 +00:00
|
|
|
darwin = {
|
|
|
|
url = "github:LnL7/nix-darwin";
|
2024-03-31 23:22:32 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
2024-03-31 23:22:32 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
2024-04-24 14:14:39 +00:00
|
|
|
emacs-larstvei.url = "github:larstvei/dot-emacs";
|
2022-09-18 15:49:37 +00:00
|
|
|
};
|
|
|
|
|
2024-04-24 14:14:39 +00:00
|
|
|
outputs = { self, nixpkgs, darwin, home-manager, emacs-larstvei, ... }@inputs: {
|
2022-09-18 15:49:37 +00:00
|
|
|
darwinConfigurations."larstvei-macbookpro" = darwin.lib.darwinSystem {
|
|
|
|
system = "aarch64-darwin";
|
|
|
|
|
|
|
|
modules = [
|
|
|
|
./modules/mac.nix
|
|
|
|
home-manager.darwinModule
|
|
|
|
{
|
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
|
|
|
users.larstvei = {
|
|
|
|
imports = [
|
2024-04-24 14:14:39 +00:00
|
|
|
{ _module.args = inputs; } # <- one could ask, why?
|
2022-09-18 15:49:37 +00:00
|
|
|
./modules/home.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
({ config, pkgs, lib, ... }: {
|
|
|
|
services.nix-daemon.enable = true;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|