feat: custom packages migrated

This commit is contained in:
punkfairie 2025-05-25 11:55:29 -07:00
parent 8811040e5b
commit f3177404a8
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
6 changed files with 12 additions and 0 deletions

View file

@ -34,6 +34,9 @@
(import ./overlays/maple-mono-NF.nix)
(import ./overlays/marleyvim.nix {inherit inputs;})
(import ./overlays/wezterm.nix {inherit inputs;})
# Custom packages
(import ./overlays/marleyos.nix)
];
};
};

9
overlays/marleyos.nix Normal file
View file

@ -0,0 +1,9 @@
_: prev: {
marleyos =
prev.marleyos
// {
CEmu-TI-84-Plus-CE = prev.callPackage ../packages/CEmu-TI-84-Plus-CE {};
figlet-xero-fonts = prev.callPackage ../packages/figlet-xero-fonts {};
phpstorm-with-node = prev.callPackage ../packages/phpstorm-with-node {};
};
}