9 lines
167 B
Nix
9 lines
167 B
Nix
{...}: {
|
|
# TODO: make this dynamic instead of hard coded
|
|
home.file."config" = {
|
|
source = ./config;
|
|
target = ".config/ssh/config";
|
|
force = true;
|
|
};
|
|
}
|