31 lines
655 B
Nix
31 lines
655 B
Nix
{
|
|
description = "My 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";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
homeConfigurations = {
|
|
avravels = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
|
|
# ✅ Load ZSH module properly
|
|
modules = [
|
|
./home.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|