chore: Move overlay to OS config

This commit is contained in:
Alexander Kobjolke 2025-02-26 15:15:39 +01:00
parent 0d0ea496f1
commit dd7433d5b7
3 changed files with 16 additions and 6 deletions

View file

@ -86,7 +86,9 @@
{
nixpkgs = {
config.allowUnfree = true;
overlays = with inputs; [ emacs.overlay ];
overlays = with inputs; [
emacs.overlay
];
};
}
)
@ -95,6 +97,9 @@
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {
inherit inputs;
};
}
{ home-manager.users.alex = ./hosts/thrall/alex.nix; }
];