mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 13:59:24 -06:00
18 lines
293 B
Nix
Executable file
18 lines
293 B
Nix
Executable file
{ flake, ... }:
|
|
{
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
backupFileExtension = "backup5";
|
|
extraSpecialArgs = {
|
|
inherit
|
|
flake
|
|
;
|
|
};
|
|
sharedModules = [
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|
|
];
|
|
};
|
|
}
|