timeshift/files/meson.build
Bobby Rong 81359efeb4
build: allow installing default.json to sysconfdir (#208)
In NixOS, packages are installed to their own prefix and
we are not allowed to install this file to /etc.
2023-07-04 11:57:48 -04:00

6 lines
126 B
Meson

install_data(
sources: 'timeshift.json',
rename: 'default.json',
install_dir: get_option('sysconfdir') / 'timeshift',
)