aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/workstation.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-11-02 13:06:05 -0800
committerFranck Cuny <franck@fcuny.net>2025-11-02 13:06:05 -0800
commitcb961051f8307a0bfd6e75acb52a7b7ac003e4d0 (patch)
treec2e3e29716bf10bb5d95d2c11d8692672c379c5f /home/profiles/workstation.nix
parentmove remote-unlock as a profile (diff)
downloadinfra-cb961051f8307a0bfd6e75acb52a7b7ac003e4d0.tar.gz
simplify configuration for darwin
Diffstat (limited to '')
-rw-r--r--home/profiles/workstation.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/home/profiles/workstation.nix b/home/profiles/workstation.nix
new file mode 100644
index 0000000..0494281
--- /dev/null
+++ b/home/profiles/workstation.nix
@@ -0,0 +1,23 @@
+{ pkgs, ... }:
+{
+ imports = [
+ ./bat.nix
+ ./eza.nix
+ ./direnv.nix
+ ./go.nix
+ ./starship.nix
+ ./fd.nix
+ ./git.nix
+ ];
+
+ home.packages = with pkgs; [
+ bottom
+ dust
+ fish
+ jless
+ jq
+ ripgrep
+ tree
+ yq
+ ];
+}