add odie-dev home-manager profile

This commit is contained in:
Patrick Neff 2024-05-02 11:29:03 +02:00
parent 5612a343b1
commit f49eb9bea6
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{
pkgs,
inputs,
outputs,
...
}: {
imports = [
inputs.csleeptimer.homeManagerModules.default
outputs.homeManagerModules.base
outputs.homeManagerModules.shell
outputs.homeManagerModules.development
outputs.homeManagerModules.user
{
desktop = {
enable = false;
};
home.packages = with pkgs; [
nix-serve
];
}
];
}