refactor homeModules

This commit is contained in:
Romain Paquet 2026-01-27 14:36:11 +01:00
parent 0603a85579
commit 4a870d4a18
26 changed files with 126 additions and 65 deletions

15
homeModules/chat.nix Normal file
View file

@ -0,0 +1,15 @@
{
self,
config,
pkgs,
...
}:
{
imports = [
self.homeModules.dotfiles
];
home.packages = with pkgs; [ senpai ];
xdg.configFile."senpai".source = "${config.dotfiles.path}/.config/senpai";
}