18 lines
328 B
Nix
18 lines
328 B
Nix
{ config, ... }:
|
|
let
|
|
homeModules = config.flake.modules.homeManager;
|
|
in
|
|
{
|
|
flake.modules.homeManager.desktop-session = {
|
|
imports = [
|
|
homeModules.niri
|
|
homeModules.clipboard
|
|
homeModules.local-apps
|
|
homeModules.mpv
|
|
homeModules.vicinae
|
|
homeModules.xdg
|
|
homeModules.theme
|
|
];
|
|
};
|
|
}
|