wip: still broken

This commit is contained in:
2025-11-06 17:14:39 -05:00
parent 717e8c452d
commit 6561e37119
3 changed files with 32 additions and 16 deletions

View File

@@ -34,7 +34,8 @@
myOverlays = { ... }: {
nixpkgs.overlays = [
rust-overlay.overlays.default
] ++ (nixpkgs.lib.attrValues self.common.overlays);
self.common.overlays
];
};
in {
meta = import ./meta;
@@ -154,17 +155,23 @@
# generic non-NixOS Linux machine
homeConfigurations."generic" = let
hostname = builtins.getEnv "HOSTNAME";
pkgs = nixpkgs.legacyPackages.x86_64-linux;
system = "x86_64-linux";
in home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# system = "x86_64-linux";
extraSpecialArgs = extraSpecialArgs // {
pkgs = nixpkgs.legacyPackages.${system};
extraSpecialArgs = {
inherit userName userEmail hostname;
ghostty = ghostty.packages.${system}.default;
isNixOS = false;
hostname = hostname;
role = "workstation";
};
modules = [
myOverlays
{
nixpkgs.overlays = [
rust-overlay.overlays.default
self.common.overlays
];
}
./home
];
};