14 lines
255 B
Nix
14 lines
255 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.kiri-workstation = {
|
|
imports = [
|
|
homeModules.workstation-base
|
|
homeModules.syncthing
|
|
homeModules.qbittorrent-client
|
|
];
|
|
};
|
|
}
|