dot_testing/home/rbw/default.nix

14 lines
192 B
Nix
Raw Normal View History

{ lib, config, pkgs, home, ... }:
{
2024-11-04 02:33:03 -06:00
home.packages = with pkgs; [
rbw
];
home.file = {
".config/rbw/config.json" = {
source = ../../.config/rbw/config.json;
};
};
}