summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-10-07 01:52:05 +0200
committerMike Vink <mike1994vink@gmail.com>2023-10-07 01:52:05 +0200
commitd4ab43855b476eab3b66649c512815c54afc8aa7 (patch)
tree4af67a5dec7527084c72062e1c22cced42957636 /profiles
parentaec37e79ed878db58d63f2d131df095cbb5e6440 (diff)
fixup
Diffstat (limited to 'profiles')
-rw-r--r--profiles/core/home.nix3
-rw-r--r--profiles/station/neovim.nix2
2 files changed, 3 insertions, 2 deletions
diff --git a/profiles/core/home.nix b/profiles/core/home.nix
index 4399fe9..01fa525 100644
--- a/profiles/core/home.nix
+++ b/profiles/core/home.nix
@@ -6,10 +6,11 @@
}: {
hm = {
fonts.fontconfig.enable = true;
+ home.file.".local/bin".source = config.lib.meta.mkMutableSymlink /mut/bin;
xdg = {
enable = true;
configFile = with config.lib.meta; {
- "emacs/init.el".source = mkMutableSymlink ./emacs/init.el;
+ "emacs/init.el".source = mkMutableSymlink /mut/emacs/init.el;
};
mimeApps = {
enable = true;
diff --git a/profiles/station/neovim.nix b/profiles/station/neovim.nix
index afe85dd..8796b88 100644
--- a/profiles/station/neovim.nix
+++ b/profiles/station/neovim.nix
@@ -7,7 +7,7 @@
hm = {
xdg = {
configFile = with config.lib.meta; {
- "nvim".source = mkMutableSymlink ../neovim;
+ "nvim".source = mkMutableSymlink /mut/neovim;
};
};