feat(nix): migrate Homebrew casks to Nix

This commit is contained in:
Stefan Imhoff
2024-07-26 20:53:41 +02:00
parent 9039df339a
commit dba8db7dbf
6 changed files with 113 additions and 52 deletions

View File

@@ -5,6 +5,13 @@
../../home
];
# Services
services.yabai.enable = true;
services.skhd.enable = true;
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
discord # All-in-one cross-platform voice and text chat for gamers
];
}

View File

@@ -4,7 +4,17 @@
taps = [ ];
brews = [ ];
casks = [
"webtorrent"
"ankerwork" # Webcam & audio device software
"daisydisk" # Disk space visualiser
"gemini" # Disk space cleaner that finds and deletes duplicated and similar files
"handbrake" # Open-source video transcoder. FIX: Broken on nixpks
"lbry" # Official client for LBRY, a decentralised file-sharing and payment network
"makemkv" # Video format converter (transcoder)
"protonvpn" # VPN client focusing on security
"raspberry-pi-imager" # # Imaging utility to install operating systems to a microSD card
"sweet-home3d" # Interior design application
"tor-browser" # Web browser focusing on security
"webtorrent" # Torrent streaming application
];
masApps = { };
}