1

Neovim: Finally fix nixd home-manager configuration

This commit is contained in:
2024-10-11 04:43:18 +02:00
parent 0922e45e66
commit b3e3a36325

View File

@ -1,4 +1,5 @@
{ {
username,
hostname, hostname,
config, config,
lib, lib,
@ -907,10 +908,10 @@ in {
}; };
options = { options = {
nixos = { nixos = {
expr = "(builtins.getFlake ('git+file://' + toString ./NixFlake)).nixosConfigurations.${hostname}.options"; expr = "(builtins.getFlake \"/home/${username}/NixFlake\").nixosConfigurations.${hostname}.options";
}; };
home_manager = { home_manager = {
expr = "(builtins.getFlake ('git+file://' + toString ./NixFlake)).nixosConfigurations.${hostname}.config.home-manager.users.christoph"; expr = "(builtins.getFlake \"/home/${username}/NixFlake\").homeConfigurations.\"${username}@${hostname}\".options";
}; };
}; };
diagnostic = { diagnostic = {