24 lines
647 B
Nix
24 lines
647 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ inputs, withSystem, ... }:
|
|
{
|
|
flake.homeConfigurations = {
|
|
raspi = withSystem "aarch64-linux" (
|
|
{ pkgs, ... }:
|
|
inputs.home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
extraSpecialArgs = { inherit inputs pkgs; };
|
|
modules = [
|
|
inputs.lix-module.nixosModules.default
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
inputs.stylix.homeModules.stylix
|
|
inputs.catppuccin.homeModules.catppuccin
|
|
../base.nix
|
|
./home.nix
|
|
];
|
|
}
|
|
);
|
|
};
|
|
}
|