nix-config/modules/home-manager/idasen/default.nix

15 lines
272 B
Nix

{ config, pkgs, ... }:
{
home = {
packages = [pkgs.idasen];
file.".config/idasen/idasen.yaml".text = pkgs.lib.generators.toYAML {} {
mac_address = "F8:3E:14:A6:42:DB";
positions = {
sit = 0.684;
stand = 1.068;
};
};
};
}