Compare commits

...

2 Commits

Author SHA1 Message Date
34bfaf2910 Add nnn 2025-09-01 09:43:33 -04:00
058c5d9708 nix flake update: 2025-09-01 11:42:55 UTC
Run `man nix.conf` for more information on the `substituters` configuration option.
Run `man nix.conf` for more information on the `substituters` configuration option.
unpacking 'https://flakehub.com/f/DeterminateSystems/determinate/%2A' into the Git cache...
unpacking 'github:nix-community/home-manager/07fc025fe10487dd80f2ec694f1cd790e752d0e8' into the Git cache...
unpacking 'github:NixOS/nixpkgs/b4c2c57c31e68544982226d07e4719a2d86302a8' into the Git cache...
unpacking 'github:NixOS/nixpkgs/baee34e6a4d1e10fde6754d999d072c2a55d2b6c' into the Git cache...
• Updated input 'home-manager':
    'github:nix-community/home-manager/54b2879ce622d44415e727905925e21b8f833a98?narHash=sha256-aAZNbGcWrVRZgWgkQbkabSGcDVRDMgON4BipMy69gvI%3D' (2025-08-26)
  → 'github:nix-community/home-manager/07fc025fe10487dd80f2ec694f1cd790e752d0e8?narHash=sha256-Xd1vOeY9ccDf5VtVK12yM0FS6qqvfUop8UQlxEB%2BgTQ%3D' (2025-08-31)
• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/41d292bfc37309790f70f4c120b79280ce40af16?narHash=sha256-YvtD2E7MYsQ3r7K9K2G7nCslCKMPShoSEAtbjHLtH0k%3D' (2025-08-29)
  → 'github:NixOS/nixpkgs/b4c2c57c31e68544982226d07e4719a2d86302a8?narHash=sha256-aGnd4AHIYCWQKChAkHPpX%2BYYCt7pA6y2LFFA/s8q0wQ%3D' (2025-08-31)
• Updated input 'nixpkgs-master':
    'github:NixOS/nixpkgs/c3713cbb4e78536db219301b46c2581b451c0061?narHash=sha256-q6P3RVr0jlDsBNUw4VPj0NR8Y8dWeuKOzWgAGc5J9aA%3D' (2025-08-30)
  → 'github:NixOS/nixpkgs/baee34e6a4d1e10fde6754d999d072c2a55d2b6c?narHash=sha256-k6C4n4WZFYrRDW69QDjlHJ/piQWl0PEqKgSh9WmsvLI%3D' (2025-09-01)
2025-09-01 07:42:55 -04:00
2 changed files with 40 additions and 10 deletions

18
flake.lock generated
View File

@@ -381,11 +381,11 @@
"nixpkgs": "nixpkgs_3"
},
"locked": {
"lastModified": 1756245065,
"narHash": "sha256-aAZNbGcWrVRZgWgkQbkabSGcDVRDMgON4BipMy69gvI=",
"lastModified": 1756679287,
"narHash": "sha256-Xd1vOeY9ccDf5VtVK12yM0FS6qqvfUop8UQlxEB+gTQ=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "54b2879ce622d44415e727905925e21b8f833a98",
"rev": "07fc025fe10487dd80f2ec694f1cd790e752d0e8",
"type": "github"
},
"original": {
@@ -476,11 +476,11 @@
},
"nixpkgs-master": {
"locked": {
"lastModified": 1756597319,
"narHash": "sha256-q6P3RVr0jlDsBNUw4VPj0NR8Y8dWeuKOzWgAGc5J9aA=",
"lastModified": 1756726609,
"narHash": "sha256-k6C4n4WZFYrRDW69QDjlHJ/piQWl0PEqKgSh9WmsvLI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c3713cbb4e78536db219301b46c2581b451c0061",
"rev": "baee34e6a4d1e10fde6754d999d072c2a55d2b6c",
"type": "github"
},
"original": {
@@ -554,11 +554,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1756469547,
"narHash": "sha256-YvtD2E7MYsQ3r7K9K2G7nCslCKMPShoSEAtbjHLtH0k=",
"lastModified": 1756617294,
"narHash": "sha256-aGnd4AHIYCWQKChAkHPpX+YYCt7pA6y2LFFA/s8q0wQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "41d292bfc37309790f70f4c120b79280ce40af16",
"rev": "b4c2c57c31e68544982226d07e4719a2d86302a8",
"type": "github"
},
"original": {

View File

@@ -144,6 +144,8 @@ in
export DOCKER_CLI_HINTS=false
export TERM=xterm-256color
export NNN_FIFO="$XDG_RUNTIME_DIR/nnn.fifo";
export PATH=$PATH:~/.cargo/bin
export PATH=$PATH:~/.local/bin
export PATH=$PATH:~/.npm-packages/bin
@@ -213,6 +215,34 @@ in
enable = true;
};
nnn = {
enable = true;
package = pkgs.nnn.override ({ withNerdIcons = true; });
bookmarks = {
d = "~/Downloads";
p = "~/src/";
c = "~/.config";
h = "~";
};
extraPackages =
with pkgs;
[
bat
eza
fzf
imv
mediainfo
]
++ lib.optionals (!stdenv.isDarwin) [ ffmpegthumbnailer ];
plugins = {
src = "${pkgs.nnn.src}/plugins";
mappings = {
p = "preview-tui";
o = "fzopen";
};
};
};
nixvim = {
enable = true;
viAlias = true;
@@ -414,7 +444,7 @@ in
package = unstable.zed-editor;
userSettings = {
features = {
edit_prediction_provider = "zed";
edit_prediction_provider = "copilot";
};
vim_mode = true;
ui_font_size = lib.mkForce 24;