Files
sydnix/users/crumb/files.nix
Madeleine Sydney e4a0777c19 feat: dropbox
2024-12-29 03:22:15 -07:00

25 lines
617 B
Nix

{ config, lib, pkgs, ... }:
let mutableSymlink = config.lib.file.mkOutOfStoreSymlink;
in {
home.file."org".source =
mutableSymlink "~/Dropbox/org";
# HACK: This all ought to be subsumed by Impermanence.
home.file."Documents".source =
mutableSymlink "/persist/home/crumb/Documents";
home.file."Pictures".source =
mutableSymlink "/persist/home/crumb/Pictures";
home.file."src".source =
mutableSymlink "/persist/home/crumb/src";
home.file."Music".source =
mutableSymlink "/persist/home/crumb/Music";
home.file."Videos".source =
mutableSymlink "/persist/home/crumb/Videos";
}