aboutsummaryrefslogtreecommitdiff
path: root/modules/users/schererleander/flake-parts.nix
blob: 806972c463b5b1b2a8bbc946eef12736e8c8ee32 (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.schererleander-linux
        {
          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.schererleander-darwin
        {
          home.homeDirectory = "/Users/schererleander";
        }
      ];
    };
  };
}