13 lines
212 B
Nix
13 lines
212 B
Nix
{ config, pkgs, flakeRoot, ... }:
|
|
|
|
let
|
|
scriptsSrc = "${flakeRoot}/generated/.config/scripts";
|
|
in
|
|
{
|
|
home.file.".config/scripts" = {
|
|
source = scriptsSrc;
|
|
recursive = true;
|
|
executable = true;
|
|
};
|
|
}
|