NixOS-Configs/home/autostart.nix
2023-10-08 15:52:26 -05:00

7 lines
137 B
Nix

{ pkgs, ... }: {
xdg.configFile."autostart" = {
recursive = true;
source = ./files/autostart;
target = "autostart";
};
}