2025-03-16 17:24:56 +01:00
|
|
|
{ self, inputs, ... }:
|
|
|
|
{
|
|
|
|
# FIXME(25.05): this version of HM should have the flake module
|
|
|
|
# imports = [ inputs.home-manager.flakeModules.home-manager ];
|
|
|
|
|
|
|
|
flake.homeModules =
|
|
|
|
let
|
|
|
|
defaultModules = [
|
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
|
|
self.nixvimModules.homeManager
|
2025-03-21 16:21:13 +01:00
|
|
|
../module/hm
|
2025-03-16 17:24:56 +01:00
|
|
|
];
|
|
|
|
nixos = {
|
|
|
|
imports = defaultModules;
|
|
|
|
};
|
|
|
|
standalone = {
|
|
|
|
imports = defaultModules ++ [
|
|
|
|
inputs.stylix.homeManagerModules.stilyx
|
|
|
|
(
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
stylix.image = config.jhome.sway.background;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit standalone nixos;
|
|
|
|
};
|
|
|
|
}
|