[Hypr] Sets up hypridle. [Nvim] Sets up nix formatting

This commit is contained in:
2025-05-19 15:52:29 -07:00
parent a5ceae0912
commit d5bc7c3143
5 changed files with 53 additions and 10 deletions
@@ -10,6 +10,7 @@
# Base languages that should always be available
./nix.nix
./lua.nix
./sh.nix
];
programs.direnv = {
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
shfmt # Formatter
];
}