nix-config/home/idasen/default.nix

15 lines
272 B
Nix
Raw Normal View History

2022-01-18 09:32:55 +01:00
{ 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;
};
};
};
}