Replace uses of home-manager.

This commit is contained in:
Tom Alexander
2025-08-10 15:34:29 -04:00
parent c947def321
commit f4338ec8df
21 changed files with 114 additions and 215 deletions

View File

@@ -48,16 +48,14 @@
})
];
home-manager.users.talexander =
{ pkgs, ... }:
{
home.file.".config/Code/User/settings.json" = {
source = ./files/settings.json;
};
home.file.".config/Code/User/keybindings.json" = {
source = ./files/keybindings.json;
};
me.install.user.talexander.file = {
".config/Code/User/settings.json" = {
source = ./files/settings.json;
};
".config/Code/User/keybindings.json" = {
source = ./files/keybindings.json;
};
};
})
]
);