home-manager | added autostart.nix

This commit is contained in:
Don Harper 2023-07-25 21:29:13 -05:00
parent 171d7390d5
commit 65fb6123a0
2 changed files with 8 additions and 0 deletions

7
home/autostart.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
xdg.configFile."autostart" = {
recursive = true;
source = ./src/autostart;
target = "autostart";
};
}

View file

@ -1,6 +1,7 @@
{ config, pkgs, ... }:
{
imports = [
./autostart.nix
./alacritty.nix
./kitty.nix
./mpv.nix