mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-06 21:17:14 -06:00
16 lines
292 B
Nix
Executable file
16 lines
292 B
Nix
Executable file
{ flake, ... }:
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.overlays = [
|
|
flake.inputs.nur.overlays.default
|
|
];
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
backupFileExtension = "backup5";
|
|
extraSpecialArgs = {
|
|
inherit flake;
|
|
};
|
|
};
|
|
}
|