dend: wip home

This commit is contained in:
2026-03-27 18:49:27 +01:00
parent bb919f666b
commit a5c8c05c7c
40 changed files with 1463 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
{self, ...}: {
flake.homeModules.layan-qt6-overlay = {
nixpkgs.overlays = [
self.overlays.layan-qt6
];
};
flake.nixosModules.layan-qt6-overlay = {
nixpkgs.overlays = [
self.overlays.layan-qt6
];
};
flake.overlays.layan-qt6 = final: prev: {
layan-qt6 = final.kdePackages.callPackage ./_derivation.nix {};
};
perSystem = {pkgs, ...}: {
packages.layan-qt6 = pkgs.callPackage ./_derivation.nix {};
};
}