feat: dropbox
This commit is contained in:
@@ -9,7 +9,10 @@
|
||||
};
|
||||
|
||||
homeConfiguration = { config, lib, pkgs, ... }: {
|
||||
imports = [ ./programs.nix ];
|
||||
imports = [
|
||||
./programs.nix
|
||||
./files.nix
|
||||
];
|
||||
|
||||
sydnix = {
|
||||
sops = {
|
||||
@@ -20,12 +23,10 @@
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
packages = [
|
||||
];
|
||||
home.packages = [
|
||||
];
|
||||
|
||||
# Don't touch!
|
||||
stateVersion = "18.09";
|
||||
};
|
||||
# Don't touch!
|
||||
home.stateVersion = "18.09";
|
||||
};
|
||||
}
|
||||
|
||||
24
users/crumb/files.nix
Normal file
24
users/crumb/files.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ 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";
|
||||
}
|
||||
Reference in New Issue
Block a user