chore: switched home manager module to new convention

This commit is contained in:
Nick 2025-11-24 19:28:08 -06:00
parent 3908f12e5d
commit 16c70361a6

View file

@ -1,18 +1,16 @@
{ flake, ... }:
{
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
flake.inputs.nur.overlays.default
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup5";
extraSpecialArgs = {
inherit
flake
;
inherit flake;
};
sharedModules = [
{
nixpkgs.config.allowUnfree = true;
}
];
};
}