home-manager.backupFileExtension

This commit is contained in:
Motiejus Jakštys 2024-08-22 13:17:39 +03:00
parent d899f10006
commit 8294512cfc
1 changed files with 13 additions and 10 deletions

View File

@ -75,8 +75,10 @@ in
}; };
}; };
home-manager.useGlobalPkgs = true; home-manager = {
home-manager.users.${config.mj.username} = useGlobalPkgs = true;
backupFileExtension = "bk";
users.${config.mj.username} =
{ pkgs, ... }: { pkgs, ... }:
import ../../../shared/home { import ../../../shared/home {
inherit lib; inherit lib;
@ -86,4 +88,5 @@ in
hmOnly = false; hmOnly = false;
}; };
}; };
};
} }