my over complex system configurations
dotfiles.isabelroses.com/
nixos
nix
flake
dotfiles
linux
1{
2 mkShellNoCC,
3 just,
4 gitMinimal,
5 sops,
6 # nix-output-monitor,
7 treefmt-wrapped,
8}:
9mkShellNoCC {
10 name = "dotfiles";
11
12 packages = [
13 just # quick and easy task runner
14 gitMinimal # we need git
15 sops # secrets management
16 treefmt-wrapped # nix formatter
17 # nix-output-monitor # get clean diff between generations
18 ];
19
20 inputsFrom = [ treefmt-wrapped ];
21
22 env.DIRENV_LOG_FORMAT = "";
23
24 meta.description = "Development shell for this configuration";
25}