Files
home-manager/flake.nix
2026-02-05 17:06:08 +01:00

40 lines
736 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;
config.allowUnfree = true;
};
in
{
homeConfigurations = {
avravels = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# ✅ Load ZSH module properly
modules = [
./home.nix
];
};
};
};
}