nixos/home/gyroflow/nixos.nix

20 lines
396 B
Nix
Raw Normal View History

2024-01-10 23:49:00 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.home.gyroflow;
in {
options.home.gyroflow = {
enable = mkEnableOption "gyroflow stabilisation software";
};
config = {
users.homeModules = [
# this module passes gyroflow configuration to home-manager
{ passthrough.gyroflow = cfg; }
];
users.home.persist.directories = [ ".config/Gyroflow" ];
};
}