blob: fa438694b66e5111e0ab1dde98f1fd5d8e287597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ inputs, ... }:
{
flake.homeConfigurations = {
# NixOS configuration for adam workstation
"schererleander@adam" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [
inputs.self.modules.homeManager.user-schererleander
{
home.homeDirectory = "/home/schererleander";
}
];
};
# Darwin configuration for lilith laptop
"schererleander@lilith" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = inputs.nixpkgs.legacyPackages.aarch64-darwin;
extraSpecialArgs = { inherit inputs; };
modules = [
inputs.self.modules.homeManager.user-schererleander
{
home.homeDirectory = "/Users/schererleander";
}
];
};
};
}
|