diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-04 07:05:18 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-04 07:05:18 -0800 |
commit | 5318b08139498b1dce6954bcb861410919236a8f (patch) | |
tree | 2f1b983be93ba4c209a45412f0bd4a295cecdadf /users | |
parent | zsh: move the configuration inline (diff) | |
download | world-5318b08139498b1dce6954bcb861410919236a8f.tar.gz |
nix: format the buffer
Diffstat (limited to 'users')
-rw-r--r-- | users/fcuny/cli/default.nix | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/users/fcuny/cli/default.nix b/users/fcuny/cli/default.nix index 1f906df..07eb211 100644 --- a/users/fcuny/cli/default.nix +++ b/users/fcuny/cli/default.nix @@ -1,18 +1,7 @@ -{ config, lib, pkgs, ...}: +{ config, lib, pkgs, ... }: { - imports = [ - ./backups.nix - ./git.nix - ./tmux.nix - ./yt-dlp.nix - ./zsh.nix - ]; + imports = [ ./backups.nix ./git.nix ./tmux.nix ./yt-dlp.nix ./zsh.nix ]; - home.packages = [ - pkgs.gcc - pkgs.gnumake - pkgs.jq - pkgs.ripgrep - ]; + home.packages = [ pkgs.gcc pkgs.gnumake pkgs.jq pkgs.ripgrep ]; } |