From f3abfbd4cac24d38bb591e17c6febd9b6d46362f Mon Sep 17 00:00:00 2001 From: oqyude Date: Sun, 3 Aug 2025 19:59:31 +0300 Subject: [PATCH] mm --- home/server.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/server.nix b/home/server.nix index e838144..9c28ad2 100755 --- a/home/server.nix +++ b/home/server.nix @@ -20,8 +20,8 @@ let xdg = { configFile = { "beets" = { - enable = builtins.pathExists beetsPath; - source = config.lib.file.mkOutOfStoreSymlink beetsPath; + enable = builtins.pathExists ${beetsPath}; + source = config.lib.file.mkOutOfStoreSymlink ${beetsPath}; target = "beets"; }; }; @@ -43,13 +43,13 @@ let home = { file = { ".ssh" = { - enable = builtins.pathExists sshPath; - source = config.lib.file.mkOutOfStoreSymlink sshPath; + enable = builtins.pathExists ${sshPath}; + source = config.lib.file.mkOutOfStoreSymlink ${sshPath}; target = ".ssh"; }; "Music" = { - enable = builtins.pathExists musicPath; - source = config.lib.file.mkOutOfStoreSymlink musicPath; + enable = builtins.pathExists ${musicPath}; + source = config.lib.file.mkOutOfStoreSymlink ${musicPath}; target = "${config.home.homeDirectory}/Music"; }; };