{
  inputs,
  outputs,
  ...
}: let
in {
  imports = [
    ./global
    ./features/coding/nixvim
    ./features/coding/tmux.nix
  ];

  home.file.".docker" = {
    source = ../rsc/docker/franz;
    recursive = true;
  };
  nixpkgs = {
    config = {
      permittedInsecurePackages = [
        "nix-2.15.3"
      ];
    };
  };
}