1
Fork 0
satellite/modules/applications/vieb.nix

11 lines
261 B
Nix
Raw Normal View History

2022-05-11 20:29:47 +02:00
{ pkgs, paths, ... }:
let vieb = "/home/adrielus/.config/Vieb"; in
{
home-manager.users.adrielus = {
home.packages = [ pkgs.vieb ];
systemd.user.tmpfiles.rules = [
"L+ /home/adrielus/.viebrc - - - - ${paths.dotfiles}/vieb/.viebrc"
];
};
}