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,15 +75,18 @@ in
}; };
}; };
home-manager.useGlobalPkgs = true; home-manager = {
home-manager.users.${config.mj.username} = useGlobalPkgs = true;
{ pkgs, ... }: backupFileExtension = "bk";
import ../../../shared/home { users.${config.mj.username} =
inherit lib; { pkgs, ... }:
inherit pkgs; import ../../../shared/home {
inherit (config.mj) stateVersion username; inherit lib;
inherit (cfg) devTools email; inherit pkgs;
hmOnly = false; inherit (config.mj) stateVersion username;
}; inherit (cfg) devTools email;
hmOnly = false;
};
};
}; };
} }