diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-19 12:54:16 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-19 12:54:16 -0800 |
| commit | bc40b7e0ad2ef5960b7f1695b4520909252a0e49 (patch) | |
| tree | f22e9e5001720bbc82055a5d4d3b24077b9647de /nix/users/fcuny/shell.nix | |
| parent | use treefmt to format all the files (diff) | |
| download | infra-bc40b7e0ad2ef5960b7f1695b4520909252a0e49.tar.gz | |
switch to the newer version of nixfmt
`nixfmt-rfc-style' replaces `nixfmt-classic'. It's actively
maintained, but also changes the style, so this commit touches all the
files in the repository.
Diffstat (limited to 'nix/users/fcuny/shell.nix')
| -rw-r--r-- | nix/users/fcuny/shell.nix | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix index d95c74d..e690437 100644 --- a/nix/users/fcuny/shell.nix +++ b/nix/users/fcuny/shell.nix @@ -1,7 +1,10 @@ { config, pkgs, ... }: -let isLinux = pkgs.stdenv.isLinux; -in { - home.packages = with pkgs; +let + isLinux = pkgs.stdenv.isLinux; +in +{ + home.packages = + with pkgs; [ # shell shellcheck @@ -28,7 +31,8 @@ in { aspellDicts.en aspellDicts.en-computers aspellDicts.en-science - ] ++ (lib.optionals (isLinux) [ htop ]); + ] + ++ (lib.optionals (isLinux) [ htop ]); # https://github.com/nix-community/home-manager/blob/master/modules/programs/fish.nix programs.fish = { @@ -65,7 +69,10 @@ in { programs.fd = { enable = true; hidden = true; - ignores = [ ".git/" ".direnv/" ]; + ignores = [ + ".git/" + ".direnv/" + ]; }; programs.direnv = { |
