41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{
|
|
|
|
description = "Home-Manager Configuration";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-25.11";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
olympus = {
|
|
url = "git+https://gitea.esotericbytes.com/Blunkall-Technologies/Olympus";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.home-manager.follows = "home-manager";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, olympus, ... } @ inputs: {
|
|
|
|
homeConfigurations = {
|
|
nathan = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = import nixpkgs {
|
|
system = builtins.currentSystem;
|
|
};
|
|
|
|
modules = [
|
|
olympus.homes.nathan
|
|
./home.nix
|
|
];
|
|
|
|
extraSpecialArgs = {
|
|
inherit inputs;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|