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