Files
nixos/henrovnix_ok/home/copy_stuff.nix
T
2026-03-02 19:14:01 +01:00

11 lines
295 B
Nix

{ config, pkgs, lib, ... }:
{
# Ensure the script is executable and available
home.packages = [ pkgs.bash ];
# Add the activation script
system.activationScripts.recreateConfig = lib.mkAfter "setupNetworking" ''
${config.flakeRoot.outPath}/assets/scripts/recreate_config.sh
'';
}