mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
mm
This commit is contained in:
+6
-6
@@ -20,8 +20,8 @@ let
|
|||||||
xdg = {
|
xdg = {
|
||||||
configFile = {
|
configFile = {
|
||||||
"beets" = {
|
"beets" = {
|
||||||
enable = builtins.pathExists beetsPath;
|
enable = builtins.pathExists ${beetsPath};
|
||||||
source = config.lib.file.mkOutOfStoreSymlink beetsPath;
|
source = config.lib.file.mkOutOfStoreSymlink ${beetsPath};
|
||||||
target = "beets";
|
target = "beets";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -43,13 +43,13 @@ let
|
|||||||
home = {
|
home = {
|
||||||
file = {
|
file = {
|
||||||
".ssh" = {
|
".ssh" = {
|
||||||
enable = builtins.pathExists sshPath;
|
enable = builtins.pathExists ${sshPath};
|
||||||
source = config.lib.file.mkOutOfStoreSymlink sshPath;
|
source = config.lib.file.mkOutOfStoreSymlink ${sshPath};
|
||||||
target = ".ssh";
|
target = ".ssh";
|
||||||
};
|
};
|
||||||
"Music" = {
|
"Music" = {
|
||||||
enable = builtins.pathExists musicPath;
|
enable = builtins.pathExists ${musicPath};
|
||||||
source = config.lib.file.mkOutOfStoreSymlink musicPath;
|
source = config.lib.file.mkOutOfStoreSymlink ${musicPath};
|
||||||
target = "${config.home.homeDirectory}/Music";
|
target = "${config.home.homeDirectory}/Music";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user