home-manager: move all config together, allow for multiple users

This commit is contained in:
Katherina Walshe-Grey 2024-08-29 17:55:30 +01:00
parent 8076f91738
commit f5191640f5
14 changed files with 19 additions and 13 deletions

View file

@ -14,12 +14,4 @@ in {
openssh.authorizedKeys.keys = keys.users.qenya;
uid = 1001;
};
home-manager.users.qenya = { config, lib, pkgs, osConfig, ... }: {
home.homeDirectory = osConfig.users.users.qenya.home;
imports = [
../../home
];
};
}