1
Fork 0
satellite/modules/applications/vieb.nix
2022-05-12 00:11:54 +03:00

11 lines
276 B
Nix

{ pkgs, paths, ... }:
let vieb = "/home/adrielus/.config/Vieb"; in
{
home-manager.users.adrielus = {
home.packages = [ pkgs.nixos-unstable.vieb ];
systemd.user.tmpfiles.rules = [
"L+ /home/adrielus/.viebrc - - - - ${paths.dotfiles}/vieb/.viebrc"
];
};
}