nix machine / user configurations

feat: add nixd / nixfmt-rfc-style

ptr.pet 5b8fc827 4f5af924

verified
Changed files
+2 -3
modules
develop
editor
shells
+1 -2
modules/develop/editor/default.nix
···
{pkgs, ...}: {
imports = [./helix.nix];
-
environment.systemPackages = with pkgs; [alejandra treefmt];
-
environment.shellAliases = {nixf-all = "alejandra **/**.nix";};
+
environment.systemPackages = with pkgs; [treefmt nixd nixfmt-rfc-style];
}
+1 -1
shells/default.nix
···
in {
default = mkNakedShell {
name = "prts";
-
packages = (with pkgs; [git git-crypt alejandra rage]) ++ [agenix-wrapped];
+
packages = (with pkgs; [git nixfmt-rfc-style treefmt rage]) ++ [agenix-wrapped];
shellHook = ''
echo \"$(tput bold)welcome to PRTS, $USER$(tput sgr0)\"
'';