diff options
Diffstat (limited to 'modules/users/schererleander/flake-parts.nix')
| -rw-r--r-- | modules/users/schererleander/flake-parts.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/users/schererleander/flake-parts.nix b/modules/users/schererleander/flake-parts.nix new file mode 100644 index 0000000..fa43869 --- /dev/null +++ b/modules/users/schererleander/flake-parts.nix @@ -0,0 +1,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"; + } + ]; + }; + }; +} |
