19 lines
395 B
Nix
19 lines
395 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.kiri-workstation = {
|
|
imports = [
|
|
homeModules.cli-base
|
|
homeModules.desktop-session
|
|
homeModules.personal-productivity
|
|
homeModules.ssh-client
|
|
homeModules.sops
|
|
homeModules.nix
|
|
homeModules.syncthing
|
|
homeModules.qbittorrent-client
|
|
];
|
|
};
|
|
}
|