mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
123
This commit is contained in:
+8
-4
@@ -8,7 +8,7 @@
|
||||
let
|
||||
# Paths
|
||||
beetsPath = "${xlib.dirs.storage}/beets/linux";
|
||||
sshPath = "${xlib.dirs.storage}/ssh/${xlib.device.hostname}";
|
||||
sshPath = "${xlib.dirs.storage}/ssh";
|
||||
musicPath = "${config.home.homeDirectory}/External/Music";
|
||||
in
|
||||
{
|
||||
@@ -39,9 +39,13 @@ in
|
||||
};
|
||||
home = {
|
||||
file = {
|
||||
".ssh" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink sshPath;
|
||||
target = ".ssh";
|
||||
"ssh-config" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink ${sshPath}/config;
|
||||
target = ".ssh/config";
|
||||
};
|
||||
"ssh-known" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink ${sshPath}/known_hosts;
|
||||
target = ".ssh/known_hosts";
|
||||
};
|
||||
"Music" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink musicPath;
|
||||
|
||||
Reference in New Issue
Block a user