summaryrefslogtreecommitdiff
path: root/common/overlays
diff options
context:
space:
mode:
authorbeeb5k <beebeeb5k@gmail.com>2026-08-17 23:03:59 +0530
committerbeeb5k <beebeeb5k@gmail.com>2026-08-17 23:03:59 +0530
commit46b0b8ac8bc612e4bf86478e08ada33d94dad01d (patch)
treefe57e75f03b1706b91278eeb216b83041e75a4ba /common/overlays
parent96feb69113b20a5de02d0634589675eb208d9cdd (diff)
Remove mango and user templates for noctalia
Diffstat (limited to 'common/overlays')
-rw-r--r--common/overlays/default.nix1
-rw-r--r--common/overlays/git.nix6
2 files changed, 7 insertions, 0 deletions
diff --git a/common/overlays/default.nix b/common/overlays/default.nix
index 6918e89..8d21a9f 100644
--- a/common/overlays/default.nix
+++ b/common/overlays/default.nix
@@ -2,5 +2,6 @@
{
flake.overlays = {
qt6ct = import ./qt6ct.nix;
+ mygit = import ./git.nix;
};
}
diff --git a/common/overlays/git.nix b/common/overlays/git.nix
new file mode 100644
index 0000000..638956f
--- /dev/null
+++ b/common/overlays/git.nix
@@ -0,0 +1,6 @@
+final: prev: {
+ mygit = (prev.git.override { withLibsecret = true; }).overrideAttrs (old: {
+ doCheck = false;
+ doInstallCheck = false;
+ });
+}