all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

reformat all nix code

Alan Pearce
commit

0741f0290ee5e7082ff421921583ff9ad8ec6f1e

parent

83d9e0536997ccea2dde49e63d0f0f458f56ee61

1 file changed, 23 insertions(+), 16 deletions(-)

changed files
M user/settings/base.nixuser/settings/base.nix
@@ -1,7 +1,9 @@
-{ config -, pkgs -, ... -}: { +{ + config, + pkgs, + ... +}: +{ imports = [ ./neovim.nix ./shell.nix
@@ -37,9 +39,10 @@ };
xdg = { enable = true; cacheHome = - if pkgs.stdenv.isDarwin - then "${config.home.homeDirectory}/Library/Caches/XDG" - else "${config.home.homeDirectory}/.cache"; + if pkgs.stdenv.isDarwin then + "${config.home.homeDirectory}/Library/Caches/XDG" + else + "${config.home.homeDirectory}/.cache"; configHome = "${config.home.homeDirectory}/.config"; dataHome = "${config.home.homeDirectory}/.local/share"; stateHome = "${config.home.homeDirectory}/.local/state";
@@ -60,7 +63,8 @@ arguments = [
"--smart-case" ]; }; - home.packages = with pkgs; + home.packages = + with pkgs; [ pv fd
@@ -71,13 +75,16 @@ dateutils
moreutils tree abduco - ] ++ ( - if !stdenv.isDarwin - then [ - file - lsof - unar - zip - ] else [ ] + ] + ++ ( + if !stdenv.isDarwin then + [ + file + lsof + unar + zip + ] + else + [ ] ); }