···11+{ config, pkgs, ... }:
22+let
33+44+ OOS = path: config.lib.file.mkOutOfStoreSymlink path;
55+66+in {
77+88+ # imports = [ ./apps ];
99+1010+ home.packages = [
1111+1212+ pkgs.fastfetch
1313+1414+ ];
1515+1616+ home.file = {
1717+1818+ # REMEMBER to lift the config file out, and refacts this after kenric puts his config
1919+ # on the public internet, study and refactor my dotfiles!
2020+ "Library/Application Support/com.mitchellh.ghostty".source =
2121+ OOS "${config.home.homeDirectory}/dev/dots/apps/ghostty";
2222+2323+ };
2424+2525+ # The state version is required and should stay at the version you
2626+ # originally installed.
2727+ home.stateVersion = "25.05";
2828+}