diff --git a/home/home.nix b/home/home.nix index 2099da0..ccaa9aa 100644 --- a/home/home.nix +++ b/home/home.nix @@ -1,7 +1,7 @@ { config, pkgs, nur, ... }: let - earlyInitPath = "emacs/early-init.el"; - initPath = "emacs/init.el"; + earlyInitPath = "./emacs/early-init.el"; + initPath = "./emacs/init.el"; in { @@ -11,7 +11,7 @@ in home.file = { "scripts" = { - source = "scripts"; + source = "./scripts"; recursive = true; }; };