mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
14 lines
205 B
Nix
14 lines
205 B
Nix
|
|
{ flake, ... }:
|
||
|
|
{
|
||
|
|
home-manager = {
|
||
|
|
useGlobalPkgs = true;
|
||
|
|
useUserPackages = true;
|
||
|
|
backupFileExtension = "backup5";
|
||
|
|
extraSpecialArgs = {
|
||
|
|
inherit
|
||
|
|
flake
|
||
|
|
;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|