fix ssh and base profiles

This commit is contained in:
chaos 2024-07-24 15:18:57 +01:00
parent b80c457dad
commit 03f0fbfc82
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -23,6 +23,7 @@ in {
(with presets.home-manager.by-user; [ (with presets.home-manager.by-user; [
root.base root.base
chaos.base
chaos.guiDevDesktop chaos.guiDevDesktop
chaos.gaming chaos.gaming
]) ])

View file

@ -0,0 +1,7 @@
{tree, ...}: {
home-manager.users.chaos = {
imports = with tree.presets.home-manager; [
base
];
};
}