10 lines
178 B
Nix
10 lines
178 B
Nix
{ config, pkgs, flakeRoot, ... }:
|
|
|
|
{
|
|
home.file.".config/scripts" = {
|
|
source = flakeRoot + "/generated/.config/scripts";
|
|
recursive = true;
|
|
executable = true;
|
|
};
|
|
}
|