ark/modules/hm-system-defaults.nix

13 lines
263 B
Nix
Raw Normal View History

2022-02-18 20:31:01 +03:00
{
config,
...
}:
{
2021-07-09 18:17:05 +03:00
home-manager.sharedModules = [
{
2022-02-18 20:31:01 +03:00
home.sessionVariables = { inherit (config.environment.sessionVariables) NIX_PATH; };
xdg.configFile."nix/registry.json".text = config.environment.etc."nix/registry.json".text;
2021-07-09 18:17:05 +03:00
}
];
}