Add initial home-manager configuration

This commit is contained in:
JuliusFreudenberger 2026-01-02 21:39:06 +01:00
parent f772e6054e
commit 5ed43a4193

View file

@ -191,5 +191,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
];
};
};
};
}