blog.trnck.dev

Fix typos and grammar nits

+8 -8
+8 -8
_posts/2025-02-01-nix.md
··· 13 13 14 14 Then, recently, I've also converted my zsh aliases and init commands to that very same Nix flake, which means that when I run a single command[^1] on a new machine, I get: 15 15 16 - - most of my system preferences set up, including 24 hour time, my (controversial) preferred scrolling direction and all of my persisted app in the app dock 17 - - close to all of my apps: some through Nix packages directly, and some using [nix-homebrew](https://github.com/zhaofengli/nix-homebrew) (mostly for GUIs, which tend to be angry when not having write permissions to their own binaries and hence not being able to auto-update) 16 + - most of my system preferences set up, including 24-hour time, my (controversial) preferred scrolling direction, and all of my persisted apps in the app dock 17 + - close to all of my apps: some through Nix packages directly, and some using [nix-homebrew](https://github.com/zhaofengli/nix-homebrew) (mostly for GUIs, which tend to be angry when not having write permissions to their binaries and hence not being able to auto-update) 18 18 - my favorite fonts 19 - - my default browser set up as the default HTTP handler (through [defaultbrowser](https://github.com/kerma/defaultbrowser) 20 - - my git config, with my name, e-mail address and GPG signing setup (although I still have to generate and import keys manually) 19 + - my default browser is set up as the default HTTP handler (through [defaultbrowser](https://github.com/kerma/defaultbrowser) 20 + - my git config, with my name, e-mail address, and GPG signing setup (although I still have to generate and import keys manually) 21 21 - a fully set-up [zoxide](https://github.com/ajeetdsouza/zoxide) (if you don't know what this is, you **have** to check it out, it will change the way you traverse folders on your system) 22 - - declaratively-managed login items (startup apps) for apps like Monitor Control, which I need to control brightness on my external monitor 22 + - declaratively-managed login items (startup apps) for apps like Monitor Control, which I need to control the brightness on my external monitor 23 23 24 24 If you're curious, you can check out my setup [on GitHub](https://github.com/filiptronicek/nix/blob/main/flake.nix). I feel like it's almost perfect, but it has some limitations: 25 25 26 26 - Some apps just aren't on either Homebrew or Nix packages (like my video editing software of choice, Davinci Resolve) 27 - - Some customizations aren't very straight forward (like maintaining the aforementioned login items or setting a screensaver, which I still wasn't able to figure out) 28 - - The per-app setup sometimes isn't granular enough and you still have to do a lot of setup within the packages you install[^2] (this is not really an issue of Nix though) 27 + - Some customizations aren't very straightforward (like maintaining the aforementioned login items or setting a screensaver, which I still wasn't able to figure out) 28 + - The per-app setup sometimes isn't granular enough and you still have to do a lot of setup within the packages you install[^2] (this is not an issue of Nix though) 29 29 30 - Next up on my list is to integrate the Nix package manager into my Gitpod dotfiles, so that I can have a consistent toolset for all my projects, no matter which one I'm working on. 30 + Next on my list is to integrate the Nix package manager into my Gitpod dotfiles so that I have a consistent toolset for all my projects, no matter which one I'm working on. 31 31 32 32 [^1]: It's not really a single command (because you have to first set up nix on the machine), but it's close to it and becomes a single command after Nix is set up 33 33 [^2]: For example, I would love to declaratively specify which of my Epic Games and Steam library items should automatically be installed on my machine