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

11 lines
276 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 = {
2022-05-11 23:11:54 +02:00
home.packages = [ pkgs.nixos-unstable.vieb ];
2022-05-11 20:29:47 +02:00
systemd.user.tmpfiles.rules = [
"L+ /home/adrielus/.viebrc - - - - ${paths.dotfiles}/vieb/.viebrc"
];
};
}