13 lines
205 B
Nix
13 lines
205 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.kiri-server = {
|
|
imports = [
|
|
homeModules.cli-base
|
|
homeModules.syncthing
|
|
];
|
|
};
|
|
}
|