nixos/home/gyroflow/nixos.nix

34 lines
710 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
2024-01-10 23:49:00 +08:00
cfg = config.home.gyroflow;
2025-01-13 11:52:09 +08:00
in
{
2024-01-10 23:49:00 +08:00
options.home.gyroflow = {
enable = mkEnableOption "gyroflow stabilisation software";
package = mkOption {
type = with types; package;
2025-01-13 11:52:09 +08:00
default = pkgs.gyroflow.overrideAttrs (
finalAttrs: previousAttrs: {
buildInputs = previousAttrs.buildInputs ++ [ pkgs.qt6Packages.qtwayland ];
}
);
description = "gyroflow package";
};
2024-01-10 23:49:00 +08:00
};
config = {
users.homeModules = [
# this module passes gyroflow configuration to home-manager
{ passthrough.gyroflow = cfg; }
];
users.home.persist.directories = mkIf cfg.enable [ ".config/Gyroflow" ];
2024-01-10 23:49:00 +08:00
};
}