about summary refs log tree commit diff stats
path: root/home-manger/grades/default.nix
blob: 8cca96409974ea3602684616e25598cf8cfebf25 (plain) (blame)
1
2
3
4
5
6
7
{config, ...}: {
  home-manager.xdg.configFile."grades/config.yaml" = {
    enable = true;
    target = "grades/config.yaml";
    source = "./config.yaml";
  };
}