this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add repl-overlays

See `man nix.conf` for details

+15 -1
+5 -1
.config/home-manager/home.nix
··· 11 11 home.username = lib.mkDefault "ianchamberlain"; 12 12 home.homeDirectory = lib.mkDefault "/home/${config.home.username}"; 13 13 14 + nix.extraOptions = '' 15 + repl-overlays = ${config.xdg.configHome}/nix/repl-overlays.nix 16 + ''; 17 + 14 18 programs = { 15 19 # Let Home Manager install and manage itself. 16 20 home-manager.enable = true; ··· 43 47 # See ../flake.nix for why this exists. It would be nice to make it be a 44 48 # relative path instead, but I guess this works, and it's needed since the 45 49 # filename ".git" is special to git and can't be checked into the repo. 46 - ".git".source = mkOutOfStoreSymlink /${config.home.homeDirectory}/.local/share/yadm/repo.git; 50 + ".git".source = mkOutOfStoreSymlink /${config.xdg.dataHome}/yadm/repo.git; 47 51 }; 48 52 49 53 services = {
+10
.config/nix/repl-overlays.nix
··· 1 + info: final: prev: 2 + let 3 + nixpkgs = 4 + if prev ? legacyPackages then prev 5 + else builtins.getFlake "nixpkgs"; 6 + in 7 + { 8 + pkgs = nixpkgs.legacyPackages.${info.currentSystem}; 9 + inherit (final.pkgs) lib stdenv; 10 + }