This commit is contained in:
2025-09-10 12:42:30 +00:00
parent ff9b507d1b
commit fd0e74f4a6
4 changed files with 21 additions and 32 deletions

36
flake.lock generated
View File

@@ -135,11 +135,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1757475826, "lastModified": 1757503661,
"narHash": "sha256-x6x30IzUOxKmOtE0KzQu9UxLrxg0HLurd5rpak62OL0=", "narHash": "sha256-bBh9sAJn0x/EdCVA6NYj/hXpcW1YBLCRMgn8A2T1l2E=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a60021a8c99bf5a28919c0a9fbb6b04422a6a8da", "rev": "3c97248d6f896232355735e34bb518ae9f130c5d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -167,11 +167,11 @@
"homebrew-cask": { "homebrew-cask": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1757494211, "lastModified": 1757504730,
"narHash": "sha256-WATqtXGCqUZn6aB+C+Op6TjUAFE0HMTV7LvOAOgad14=", "narHash": "sha256-diAa8OhjHHNgOzItPpNRC+J6d424ZaX07KRB4Miv9pM=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-cask", "repo": "homebrew-cask",
"rev": "136aa7a7b9206d0df6bf3d8fdd82cfa3efdf9a7e", "rev": "aa98595ef54d9f1cdeb81ac4bc1494f99372cc61",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -183,11 +183,11 @@
"homebrew-core": { "homebrew-core": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1757494861, "lastModified": 1757507867,
"narHash": "sha256-DY0gzANWxACRjHhh5tC0GcaOKwIz2ynzxqnx0sDQmCs=", "narHash": "sha256-558nWfmfZIBiuhiAdT7r6fEK3bi1fcqQA2DPa8cGS3s=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-core", "repo": "homebrew-core",
"rev": "c3b83be898373651f90e52a6a405f0f0f3196f69", "rev": "27e5ad549965f3d218a8931ed733f45f036d7e59",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -244,11 +244,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1757493204, "lastModified": 1757507805,
"narHash": "sha256-bwg0O7Xo/T7aTWp0zicklTonSULI33Y1LMsqFBmTIf8=", "narHash": "sha256-yYe5M26PPLS8FU9ZM0sg7LXuG+qmnY6KTsniOfmpiKU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f9e9d45a64c8ff4e9906260804a1679a28819b4e", "rev": "e48a0648d1307dff48da5f0535bc726059718162",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -313,11 +313,11 @@
"systems": "systems_2" "systems": "systems_2"
}, },
"locked": { "locked": {
"lastModified": 1757437784, "lastModified": 1757498201,
"narHash": "sha256-GFbRW1QCBNK/0di2Dj0WZJxdN+EZgTTn6gm7af4/r9s=", "narHash": "sha256-5ziMmnuTH8bWRgNV1NhvEs6W999a5QogIE4zvayaqOY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "51edc33c9763e486beacf6a066ae41a3c18827fa", "rev": "c55042f7394a8c0494d779735c2a6a9d32151b4a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -392,11 +392,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1757449901, "lastModified": 1757503115,
"narHash": "sha256-qwN8nYdSRnmmyyi+uR6m4gXnVktmy5smG1MOrSFD8PI=", "narHash": "sha256-S9F6bHUBh+CFEUalv/qxNImRapCxvSnOzWBUZgK1zDU=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "3b4a369df9dd6ee171a7ea4448b50e2528faf850", "rev": "0bf793823386187dff101ee2a9d4ed26de8bbf8c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -3,22 +3,10 @@
# clipboard - OSC52 yank and paste # clipboard - OSC52 yank and paste
{ {
mode = ["n" "v"]; mode = ["n" "v"];
key = "y"; key = "<leader>y";
action = ''"+y''; action = ''"+y'';
options.desc = "Yank to system clipboard (OSC52)"; options.desc = "Yank to system clipboard (OSC52)";
} }
{
mode = ["n" "v"];
key = "p";
action = ''"+p'';
options.desc = "Paste from system clipboard (OSC52)";
}
{
mode = ["n" "v"];
key = "P";
action = ''"+P'';
options.desc = "Paste before from system clipboard (OSC52)";
}
# e - explore/edit # e - explore/edit
{ {
mode = "n"; mode = "n";

View File

@@ -1,4 +1,5 @@
{pkgs}: {pkgs}:
with pkgs; [ with pkgs; [
gcc15 gcc15
ghostty.terminfo
] ]

View File

@@ -4,6 +4,7 @@ with pkgs; [
age age
alejandra alejandra
ast-grep ast-grep
codex
delta delta
devenv devenv
dig dig
@@ -13,7 +14,6 @@ with pkgs; [
fd fd
fira-code fira-code
gh gh
ghostty.terminfo
git git
gnumake gnumake
gnupg gnupg