summaryrefslogtreecommitdiff
path: root/custom/dotfiles.nix
blob: 27ba9c152057288cd775f5b657cc8a133e99b2f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ fetchgit
, lib
, findutils
, coreutils
}:

let
  dotfiles = fetchgit (rec {
    name = "dotfiles-${rev}";
    url = git://git.yggdrasil.li/dotfiles;
    rev = "bb05ba59e5816c55780fa3ca9b5b6422de2af260";
    sha256 = "dc8538fb02d33b57c9b230e1dd01b8300cc0495b40f4bbbd9ee63cf8e0073377";
  });
  setupUser = name : {
    name = name.dir;
    value = ''
      cd ${dotfiles}
      ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ${coreutils}/bin/install -o ${name.owner} -g ${name.group} -d "${name.dir}/{}"
      ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ln -s -f "${dotfiles}/{}" "${name.dir}/{}"
      ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- chown -h "${name.owner}:${name.group}" "${name.dir}/{}"
    '';
  };
in
  names : lib.listToAttrs (builtins.map setupUser names)