wip: adding standalone home-manager config

need to modularize though
This commit is contained in:
2025-10-09 14:27:05 -04:00
parent a3c53820b1
commit ba66937ee3
10 changed files with 191 additions and 44 deletions

View File

@@ -12,6 +12,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
ghostty.url = "github:ghostty-org/ghostty";
nixgl.url = "github:guibou/nixGL";
};
outputs = inputs @ {
@@ -21,6 +22,7 @@
darwin,
home-manager,
ghostty,
nixgl,
...
}: let
userName = "wyatt";
@@ -129,5 +131,17 @@
# }
# ];
};
# For anyone running home-manager standalone
homeConfigurations.${userName} = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [
./home
];
# Optionally, pass specialArgs if needed
extraSpecialArgs = extraSpecialArgs // {
inherit nixgl;
};
};
};
}