From 65fb6123a0a05186f7a312adeeed2e371946b7a3 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 25 Jul 2023 21:29:13 -0500 Subject: [PATCH] home-manager | added autostart.nix --- home/autostart.nix | 7 +++++++ home/packages-gui.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 home/autostart.nix diff --git a/home/autostart.nix b/home/autostart.nix new file mode 100644 index 0000000..044ae31 --- /dev/null +++ b/home/autostart.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: { + xdg.configFile."autostart" = { + recursive = true; + source = ./src/autostart; + target = "autostart"; + }; +} diff --git a/home/packages-gui.nix b/home/packages-gui.nix index deab367..1cfb7f8 100644 --- a/home/packages-gui.nix +++ b/home/packages-gui.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: { imports = [ + ./autostart.nix ./alacritty.nix ./kitty.nix ./mpv.nix