diff options
Diffstat (limited to 'custom')
| -rw-r--r-- | custom/dotfiles.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/custom/dotfiles.nix b/custom/dotfiles.nix new file mode 100644 index 00000000..e45fc2d0 --- /dev/null +++ b/custom/dotfiles.nix | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | { fetchgit | ||
| 2 | , lib | ||
| 3 | , findutils | ||
| 4 | }: | ||
| 5 | |||
| 6 | let | ||
| 7 | dotfiles = fetchgit (rec { | ||
| 8 | name = "dotfiles-${rev}"; | ||
| 9 | url = git://git.yggdrasil.li/dotfiles; | ||
| 10 | rev = "377401ceefea6772915071267625cd02c066f86e"; | ||
| 11 | sha256 = "258e15ff69afaa663541b1691e1385d43b74d086891e4a0009d3507ab6cfbbe8"; | ||
| 12 | }); | ||
| 13 | setupUser = name : { | ||
| 14 | inherit name; | ||
| 15 | value = '' | ||
| 16 | cd ${dotfiles} | ||
| 17 | ${findutils}/bin/find . -type d -print0 | ${findutils}/bin/xargs -0 -I '{}' -- mkdir -p "/home/${name}/{}" | ||
| 18 | ${findutils}/bin/find . -type f -print0 | ${findutils}/bin/xargs -0 -I '{}' -- ln -s -f "${dotfiles}/{}" "/home/${name}/{}" | ||
| 19 | ''; | ||
| 20 | }; | ||
| 21 | in | ||
| 22 | names : lib.listToAttrs (builtins.map setupUser names); | ||
