alpha
Login
or
Join now
yemou.pink
/
nix-configs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Nix configurations for my homelab
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
all: remove patches for kakoune
author
yemou
date
1 year ago
(Jun 4, 2025, 8:07 AM -0400)
commit
f8a4e501
f8a4e5018e819901a6b95b2718b18fe1744eec7e
parent
78e6b63c
78e6b63c8ad08592bb2454997c6010801e60334d
+7
-20
2 changed files
Expand all
Collapse all
Unified
Split
flake.lock
modules
editor.nix
+7
-7
flake.lock
Reviewed
···
159
159
},
160
160
"nixpkgs": {
161
161
"locked": {
162
162
-
"lastModified": 1748942227,
163
163
-
"narHash": "sha256-U1oNpFoDO7QaO4iHsue7atK/5mJy7U1Y37mLU/SRk0o=",
162
162
+
"lastModified": 1749032651,
163
163
+
"narHash": "sha256-1RLgqmQnvTD1F1BCxu70F2z3LtyHfi+JDy97eklH2E0=",
164
164
"owner": "NixOS",
165
165
"repo": "nixpkgs",
166
166
-
"rev": "7ab490624e297ff96f52858bb32b504516b8bb61",
166
166
+
"rev": "a1ba3c5c21b2424ad0bd13bbbfa50ebfbd54823e",
167
167
"type": "github"
168
168
},
169
169
"original": {
···
319
319
"nixpkgs": "nixpkgs_4"
320
320
},
321
321
"locked": {
322
322
-
"lastModified": 1748977408,
323
323
-
"narHash": "sha256-We7N+zK74PenQ+1vH6uf5/ZPb7PthZ6AL43K4vjbP5k=",
322
322
+
"lastModified": 1749025678,
323
323
+
"narHash": "sha256-Ed9Y/rfMfkJzsfy19RP38OZMD6seHuTJXoKIMg8ckco=",
324
324
"ref": "refs/heads/master",
325
325
-
"rev": "1d1adbfe7b9761d0248e36d54da03e1e3c402c73",
326
326
-
"revCount": 750,
325
325
+
"rev": "6d3ed2946c5b4e509993ccba4b3628c7b663ace9",
326
326
+
"revCount": 751,
327
327
"type": "git",
328
328
"url": "https://tangled.sh/@tangled.sh/core"
329
329
},
-13
modules/editor.nix
Reviewed
···
1
1
{ pkgs, ... }:
2
2
{
3
3
-
nixpkgs.overlays = [
4
4
-
(final: prev: {
5
5
-
kakoune-unwrapped = prev.kakoune-unwrapped.overrideAttrs (
6
6
-
finalAttrs: prevAttrs: {
7
7
-
patches = (prevAttrs.patches or [ ]) ++ [
8
8
-
./packages/kakoune/01-typst-kak.patch
9
9
-
./packages/kakoune/02-typst-comments.patch
10
10
-
];
11
11
-
}
12
12
-
);
13
13
-
})
14
14
-
];
15
15
-
16
3
environment = {
17
4
sessionVariables = {
18
5
EDITOR = "kak";