this repo has no description
0
fork

Configure Feed

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

20 2024-08-19 14:13:13 (current)

+3 -2
+2 -1
home.nix
··· 17 17 18 18 # The home.packages option allows you to install Nix packages into your 19 19 # environment. 20 - home.packages = [ 20 + home.packages = with pkgs; [ 21 + hello 21 22 # # It is sometimes useful to fine-tune packages, for example, by applying 22 23 # # overrides. You can do that directly here, just don't forget the 23 24 # # parentheses. Maybe you want to install Nerd Fonts with a limited number of
+1 -1
rebuild.sh
··· 6 6 echo "Rebuilding nix" 7 7 mkdir -p logs 8 8 darwin-rebuild switch --flake . &>logs/darwin-rebuild.log || ( 9 - cat darwin-rebuild.log | grep --color error && false) 9 + cat logs/darwin-rebuild.log | grep --color error && false) 10 10 gen=$(darwin-rebuild --list-generations | grep current) 11 11 git commit -am "$gen" 12 12 popd