yazi and etc

This commit is contained in:
Matt Nish-Lapidus 2025-06-18 20:48:38 -04:00
parent 921aabab40
commit 92b7f86211
3 changed files with 15 additions and 14 deletions

24
flake.lock generated
View file

@ -90,11 +90,11 @@
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {
"lastModified": 1750237806, "lastModified": 1750267163,
"narHash": "sha256-2CmtuWDAxP/o14TeKXQa0BtHMALKjFAmoU4DaWX78zk=", "narHash": "sha256-RTO4oUnD8pheHYw0gawAT4lgydHUZTWTnfB1ZmfcXb4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "90856b1b570da027a768a8b8c11d49be723a7856", "rev": "8dc664291c0acdd539dd27715fac06b448431f2d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -448,11 +448,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1750256996, "lastModified": 1750275572,
"narHash": "sha256-xPH4tgE7yIeBtOn54B6iDzMGXrf7mWvODML+DCN+H8I=", "narHash": "sha256-upC/GIlsIgtdtWRGd1obzdXWYQptNkfzZeyAFWgsgf0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "f754e377dc2da5d34dfea6a5215c21741eaf8930", "rev": "0f355844e54e4c70906b1ef5cc35a0047d666c04",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -866,11 +866,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1750012662, "lastModified": 1750263362,
"narHash": "sha256-oqwScFXSJavR16ffd090wnUkoHn9t28C3gRkTn2///4=", "narHash": "sha256-n5XvEaSanFe9g1AF6l2o+6OE8THpErU44pu6tt0c9PE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nh", "repo": "nh",
"rev": "f5aa53599ab28f83f5e45b88ed6fef531e747cde", "rev": "4b39f8496d5bc4f86d0f256ca4b2d7dbcbd9fc00",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -891,11 +891,11 @@
"xwayland-satellite-unstable": "xwayland-satellite-unstable" "xwayland-satellite-unstable": "xwayland-satellite-unstable"
}, },
"locked": { "locked": {
"lastModified": 1750230031, "lastModified": 1750270605,
"narHash": "sha256-h1aDeX8j10N0pHqdvmVoLQsnTwj1TbxeTPos7x1wuZA=", "narHash": "sha256-JfuuBGrM36I7KB9UID5urRvjHWWjFW//gMxQ5g9PrSo=",
"owner": "sodiboo", "owner": "sodiboo",
"repo": "niri-flake", "repo": "niri-flake",
"rev": "1fc50d02ad4fe47daa5c22f9fa116ca220ab5154", "rev": "da32eedd0d2c980fc90fe2b5cdd9080cc8c9f51f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -152,7 +152,7 @@
}; };
opener = { opener = {
edit = [ edit = [
{ run = "$EDITOR \"$@\""; desc = "emacsclient"; orphan = true; block = false; } { run = "emacsclient -r \"$@\""; desc = "emacsclient"; orphan = true; block = false; }
{ run = "nano \"$@\""; desc = "nano"; orphan = false; block = true; } { run = "nano \"$@\""; desc = "nano"; orphan = false; block = true; }
]; ];
extract = [ extract = [

View file

@ -3,7 +3,7 @@
{ {
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [ programs.nix-ld.libraries = with pkgs; [
zlib zlib.out
zstd zstd
stdenv.cc.cc stdenv.cc.cc
curlFull curlFull
@ -41,5 +41,6 @@
vulkan-loader vulkan-loader
libffi.out libffi.out
gcc.out gcc.out
opencv.out
]; ];
} }