feat: move to single-user config

This commit is contained in:
2026-04-26 18:08:48 +02:00
parent 75ba00929e
commit dba24ce5f3
27 changed files with 160 additions and 300 deletions
+6 -2
View File
@@ -1,10 +1,14 @@
{ config, ... }:
let
account = config.repo.account;
in
{
flake.modules.homeManager.nh =
{ config, ... }:
{ ... }:
{
programs.nh = {
enable = true;
flake = config.meta.user.account.nixosConfigurationPath;
flake = account.nixosConfigurationPath;
};
};
}