All checks were successful
/ check-fmt (push) Successful in 4s
/ build-package (audiomenu) (push) Successful in 0s
/ build-package (docs) (push) Successful in 0s
/ build-package (docs-home-markdown) (push) Successful in 1s
/ build-package (docs-nixos-markdown) (push) Successful in 1s
/ build-package (docs-nvim-markdown) (push) Successful in 0s
/ build-package (jpassmenu) (push) Successful in 1s
/ build-package (nvim) (push) Successful in 1s
/ build-package (nvim-headless) (push) Successful in 1s
/ build-package (nvim-no-lsps) (push) Successful in 1s
/ build-package (nvim-no-ts) (push) Successful in 1s
/ build-package (nvim-small) (push) Successful in 1s
/ build-package (search) (push) Successful in 0s
/ check-nvim (nvim) (push) Successful in 6s
/ check-nvim (nvim-headless) (push) Successful in 2s
/ check-nvim (nvim-no-lsps) (push) Successful in 4s
/ check-nvim (nvim-no-ts) (push) Successful in 6s
/ check-nvim (nvim-small) (push) Successful in 5s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s
31 lines
740 B
Nix
31 lines
740 B
Nix
{ 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.homeModules.nixvim
|
|
self.nixvimModules.homeManager
|
|
../modules/hm
|
|
];
|
|
nixos = {
|
|
imports = defaultModules;
|
|
};
|
|
standalone = {
|
|
imports = defaultModules ++ [
|
|
inputs.stylix.homeModules.stylix
|
|
(
|
|
{ lib, config, ... }:
|
|
lib.mkIf config.jhome.gui.enable {
|
|
stylix.image = config.jhome.gui.sway.background;
|
|
}
|
|
)
|
|
];
|
|
};
|
|
in
|
|
{
|
|
inherit standalone nixos;
|
|
};
|
|
}
|