home.files symlinks: port to sane.fs

This commit is contained in:
colin 2023-01-04 07:14:38 +00:00
parent 2c48e61854
commit 170008f345
2 changed files with 11 additions and 13 deletions

View File

@ -28,7 +28,7 @@ in
isNormalUser = true;
home = "/home/colin";
createHome = true;
homeMode = "700";
homeMode = "0700";
uid = config.sane.allocations.colin-uid;
# i don't get exactly what this is, but nixos defaults to this non-deterministically
# in /var/lib/nixos/auto-subuid-map and i don't want that.
@ -102,6 +102,16 @@ in
".cache/mozilla"
];
# convenience
sane.fs."/home/colin/knowledge".symlink.target = "/home/colin/private/knowledge";
sane.fs."/home/colin/nixos".symlink.target = "/home/colin/dev/nixos";
sane.fs."/home/colin/Videos/servo".symlink.target = "/mnt/servo-media/Videos";
sane.fs."/home/colin/Videos/servo-incomplete".symlink.target = "/mnt/servo-media/incomplete";
sane.fs."/home/colin/Music/servo".symlink.target = "/mnt/servo-media/Music";
# used by password managers, e.g. unix `pass`
sane.fs."/home/colin/.password-store".symlink.target = "/home/colin/knowledge/secrets/accounts";
sane.impermanence.dirs.sys.plaintext = mkIf cfg.guest.enable [
# intentionally allow other users to write to the guest folder
{ directory = "/home/guest"; user = "guest"; group = "users"; mode = "0775"; }

View File

@ -75,18 +75,6 @@ in
};
};
home.file = {
# convenience
"knowledge".source = config.lib.file.mkOutOfStoreSymlink "/home/colin/private/knowledge";
"nixos".source = config.lib.file.mkOutOfStoreSymlink "/home/colin/dev/nixos";
"Videos/servo".source = config.lib.file.mkOutOfStoreSymlink "/mnt/servo-media/Videos";
"Videos/servo-incomplete".source = config.lib.file.mkOutOfStoreSymlink "/mnt/servo-media/incomplete";
"Music/servo".source = config.lib.file.mkOutOfStoreSymlink "/mnt/servo-media/Music";
# used by password managers, e.g. unix `pass`
".password-store".source = config.lib.file.mkOutOfStoreSymlink "/home/colin/knowledge/secrets/accounts";
};
# XDG defines things like ~/Desktop, ~/Downloads, etc.
# these clutter the home, so i mostly don't use them.
xdg.userDirs = {