palette/home-manager/homeFiles.nix
George Kaklamanos bae215ec34
keepassxc: Convert to usage of home-manager module
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
2025-06-20 23:30:13 +03:00

21 lines
377 B
Nix

{
config,
pkgs,
lib,
...
}: {
home.file.".cargo/config.toml".text = ''
[build]
target-dir = "/mnt/build"
'';
home.file.".config/ntfy/client.yml".text = ''
default-host: https://ntfy.gkaklas.gr
'';
home.file.".config/containers/storage.conf".text = ''
[storage]
rootless_storage_path="/mnt/storage/.containers"
driver="btrfs"
'';
}