2024-04-25 02:33:53 +02:00
|
|
|
# Custom packages, that can be defined similarly to ones from nixpkgs
|
|
|
|
# You can build them using 'nix build .#example'
|
|
|
|
pkgs: {
|
|
|
|
# example = pkgs.callPackage ./example { };
|
2024-05-14 01:34:04 +02:00
|
|
|
themes = {
|
|
|
|
kde-gruvbox-colors = pkgs.callPackage ./themes/kde-gruvbox-colors.nix { };
|
|
|
|
};
|
2024-05-29 00:15:32 +02:00
|
|
|
|
|
|
|
gnomeExtensions = {
|
|
|
|
rounded-window-corners = pkgs.callPackage ./gnomeExtensions/rounded-window-corners.nix { };
|
|
|
|
};
|
2024-06-06 12:22:10 +02:00
|
|
|
|
|
|
|
kernelPackages = {
|
|
|
|
rtl8821ce = pkgs.callPackage ./kernelPackages/rtl8821ce.nix { };
|
|
|
|
};
|
2024-04-25 02:33:53 +02:00
|
|
|
}
|