chore(update): temp patch lix, ssh keys and other fixes

This commit is contained in:
2025-09-15 08:17:38 +02:00
parent cc43567fc9
commit d865a5c9cb
2 changed files with 21 additions and 13 deletions

24
flake.lock generated
View File

@@ -464,11 +464,11 @@
}, },
"hardware": { "hardware": {
"locked": { "locked": {
"lastModified": 1757775351, "lastModified": 1757891025,
"narHash": "sha256-xWsxmNHwt9jV/yFJqzsNeilpH4BR8MPe44Yt0eaGAIM=", "narHash": "sha256-NfiTk59huy/YK9H4W4wVwRYyiP2u86QqROM5KK4f5F4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "f89c620d3d6e584d98280b48f0af7be4f8506ab5", "rev": "4c38a024fa32e61db2be8573e5282b15d9733a79",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -483,11 +483,11 @@
"rust-overlay": "rust-overlay_2" "rust-overlay": "rust-overlay_2"
}, },
"locked": { "locked": {
"lastModified": 1757855466, "lastModified": 1757891477,
"narHash": "sha256-pbqqCTndJg7pFc9yb25vI6oQvNF6p1195Qge94Bizlg=", "narHash": "sha256-xNZXCWqmJ1XOYbNYGKgp6o5sWcayyLWrSE3b7wzEA7k=",
"owner": "helix-editor", "owner": "helix-editor",
"repo": "helix", "repo": "helix",
"rev": "9acfa51209ccc0eb523a8e1028f19faba80c6b8a", "rev": "1f020b1d724fdbd1c8542c9654f2cb78c4f147b6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -503,11 +503,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1757809953, "lastModified": 1757910558,
"narHash": "sha256-29mlXbfAJhz9cWVrPP4STvVPDVZFCfCOmaIN5lFJa+Y=", "narHash": "sha256-qD2UBG+JfmIE50OmjumOQZ73LKUacxO7uq2hxkna0rA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "17a10049486f6698fca32097d8f52c0c895542b0", "rev": "5e06d0f1844bd150e7813368b06f32b03c816a0d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -717,11 +717,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1757871360, "lastModified": 1757889285,
"narHash": "sha256-2IURDzx2DQQtqCiPIRzuyI8HwGBamQ7USlzB6W1e6u8=", "narHash": "sha256-IUDbY2sjfa+ySyI+BEw61QANuzCYXGIdCrbkULLAr1s=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "contrib", "repo": "contrib",
"rev": "9c4057e6f667e7f7cd043bc8ec3ee4a473f360f0", "rev": "bc9dbdebbebeb8eb75115a865f74c8acc3ec2424",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -22,7 +22,15 @@
flakeInputs = lib.filterAttrs (_: v: lib.isType "flake" v) inputs; flakeInputs = lib.filterAttrs (_: v: lib.isType "flake" v) inputs;
in in
{ {
package = pkgs.lix; package = pkgs.lix.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
(pkgs.fetchpatch2 {
name = "lix-lowdown-1.4.0.patch";
url = "https://git.lix.systems/lix-project/lix/commit/858de5f47a1bfd33835ec97794ece339a88490f1.patch";
hash = "sha256-FfLO2dFSWV1qwcupIg8dYEhCHir2XX6/Hs89eLwd+SY=";
})
];
});
# pin the registry to avoid downloading and evaling a new nixpkgs version every time # pin the registry to avoid downloading and evaling a new nixpkgs version every time
registry = lib.mapAttrs (_: v: { flake = v; }) flakeInputs; registry = lib.mapAttrs (_: v: { flake = v; }) flakeInputs;