15 lines
222 B
Nix
15 lines
222 B
Nix
{ config, ... }:
|
|
let
|
|
account = config.repo.account;
|
|
in
|
|
{
|
|
flake.modules.homeManager.nh =
|
|
{ ... }:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = account.nixosConfigurationPath;
|
|
};
|
|
};
|
|
}
|