this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

14 2024-08-19 13:23:00 (current)

+11
+1
flake.nix
··· 29 29 pkgs.vim 30 30 pkgs.home-manager 31 31 pkgs.alejandra 32 + pkgs.neovim 32 33 ]; 33 34 34 35 homebrew = {
+10
rebuild.sh
··· 1 1 #! /bin/bash 2 + set -e 3 + pushd ~/.config/nix 4 + alejandra . &>/dev/null 5 + git diff -U0 *.nix 6 + echo "Rebuilding nix" 7 + darwin-rebuild switch --flake . &>darwin-rebuild.log || ( 8 + cat darwin-rebuild.log | grep --color error && false) 9 + gen=$(darwin-rebuild --list-generations | grep current) 10 + git commit -am "$gen" 11 + popd