Add initial home-manager configuration

This commit is contained in:
JuliusFreudenberger 2026-01-02 21:39:06 +01:00
parent a6e1430a3e
commit fbb86d2d53

View file

@ -152,5 +152,24 @@
}; };
}; };
homeConfigurations = {
jufr2 = let
username = "jufr2";
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
home/core.nix
home/neovim/default.nix
home/zsh/default.nix
];
};
};
}; };
} }