minus-square00xide@lemmy.mltoNix / NixOS@programming.dev•What are some nice snippets that everyone should have in their NixOS config?linkfedilinkEnglisharrow-up2·3 months agoNix-specific shell aliases: nixls is 'cd /etc/nixos && tree *.nix(wrong tree syntax hut you get the gist)nixrs` is a function that… runs git add . and git status in /etc/nixos runs nixos rebuild-switch --flake returns you to whatever directory you were in lib.mkIf for optional configs Using let ... In {} more often, basically treating nix as a programming language instead of a config language linkfedilink
00xide@lemmy.ml to Nix / NixOS@programming.devEnglish · 4 months agoDo you use Nix for app configuration, or the app's native config language?plus-squaremessage-squaremessage-square5linkfedilinkarrow-up16arrow-down10
arrow-up16arrow-down1message-squareDo you use Nix for app configuration, or the app's native config language?plus-square00xide@lemmy.ml to Nix / NixOS@programming.devEnglish · 4 months agomessage-square5linkfedilink
Nix-specific shell aliases:
nixlsis 'cd /etc/nixos && tree *.nix(wrong tree syntax hut you get the gist)nixrs` is a function that…git add .andgit statusin /etc/nixosnixos rebuild-switch --flakelib.mkIf for optional configs
Using
let ... In {}more often, basically treating nix as a programming language instead of a config language