aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-04-21 08:48:56 -0700
committerFranck Cuny <franck@fcuny.net>2025-04-21 08:48:56 -0700
commit870cc75914685fccfb1d2544bfc6d3322ab95154 (patch)
tree7d1c3b2c3ed905fb0aa42637ed9b22b4b34bf4a3 /nix
parentclean up justfile and rename aliases (diff)
downloadinfra-870cc75914685fccfb1d2544bfc6d3322ab95154.tar.gz
install tools with nix instead of brew
Diffstat (limited to 'nix')
-rw-r--r--nix/machines/darwin-shared.nix3
-rw-r--r--nix/users/fcuny/dev.nix2
-rw-r--r--nix/users/fcuny/media.nix1
3 files changed, 3 insertions, 3 deletions
diff --git a/nix/machines/darwin-shared.nix b/nix/machines/darwin-shared.nix
index f2a6d44..5ad4428 100644
--- a/nix/machines/darwin-shared.nix
+++ b/nix/machines/darwin-shared.nix
@@ -117,13 +117,10 @@
];
casks = [
- "1password-cli"
"docker"
"element"
"iterm2"
- "transmission"
"vlc"
- "wireshark"
];
};
diff --git a/nix/users/fcuny/dev.nix b/nix/users/fcuny/dev.nix
index 038e5ce..d2bb6eb 100644
--- a/nix/users/fcuny/dev.nix
+++ b/nix/users/fcuny/dev.nix
@@ -1,7 +1,9 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
+ _1password-cli
aider-chat
+ wireshark
# go
go-tools
diff --git a/nix/users/fcuny/media.nix b/nix/users/fcuny/media.nix
index 342cfb4..f0919a3 100644
--- a/nix/users/fcuny/media.nix
+++ b/nix/users/fcuny/media.nix
@@ -3,5 +3,6 @@
home.packages = with pkgs; [
mpv
ffmpeg
+ transmission_4
];
}