about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-04 07:05:18 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-04 07:05:18 -0800
commit5318b08139498b1dce6954bcb861410919236a8f (patch)
tree2f1b983be93ba4c209a45412f0bd4a295cecdadf
parentzsh: move the configuration inline (diff)
downloadworld-5318b08139498b1dce6954bcb861410919236a8f.tar.gz
nix: format the buffer
-rw-r--r--users/fcuny/cli/default.nix17
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 ];
 }