Files
lux/modules/features/nh.nix
T
2026-04-26 18:08:48 +02:00

15 lines
222 B
Nix

{ config, ... }:
let
account = config.repo.account;
in
{
flake.modules.homeManager.nh =
{ ... }:
{
programs.nh = {
enable = true;
flake = account.nixosConfigurationPath;
};
};
}