1{
2 description = "Home Manager configuration of nel";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
6 home-manager = {
7 url = "github:nix-community/home-manager/release-25.05";
8 inputs.nixpkgs.follows = "nixpkgs";
9 };
10 };
11
12 outputs = {
13 nixpkgs,
14 home-manager,
15 ...
16 } @ inputs: let
17 system = "x86_64-linux";
18 pkgs = nixpkgs.legacyPackages.${system};
19 in {
20 homeConfigurations."nel" = home-manager.lib.homeManagerConfiguration {
21 inherit pkgs;
22 extraSpecialArgs = { inherit inputs; };
23 modules = [(import ./modules/home)];
24 };
25 };
26}