improve lockscreen and remove explicit packages

This commit is contained in:
Noah Masur
2022-05-17 19:17:36 -04:00
parent 7603005864
commit 6c6d80a1d0
4 changed files with 229 additions and 221 deletions

View File

@ -4,7 +4,7 @@
home-manager.users.${config.user} = {
home.packages = with pkgs; [ exa fd bat ripgrep curl ];
home.packages = with pkgs; [ curl ];
programs.fish = {
enable = true;
@ -38,7 +38,7 @@
description = "Tidy up JSON using jq";
body = "pbpaste | jq '.' | pbcopy"; # Need to fix for non-macOS
};
ls = { body = "exa $argv"; };
ls = { body = "${pkgs.exa}/bin/pkgs $argv"; };
note = {
description = "Edit or create a note";
argumentNames = "filename";