24 lines
553 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ config, pkgs, ... }: {
2023-01-26 00:23:55 +03:00
home-manager.users.${config.mainuser} = {
programs.nnn = {
enable = true;
2023-01-26 02:12:00 +03:00
package = pkgs.nnn.override { withNerdIcons = true; };
2023-01-26 00:23:55 +03:00
# extraPackages = with pkgs; [ ffmpegthumbnailer mediainfo sxiv ];
# bookmarks = {
# d = "~/Documents";
# D = "~/Downloads";
# p = "~/Pictures";
# v = "~/Videos";
# };
# plugins = { };
};
programs.zsh.shellAliases = {
2023-07-05 20:43:46 +03:00
"n" = "nnn -deHE";
2023-01-26 00:23:55 +03:00
};
};
2023-03-27 16:00:57 +03:00
persist.state.homeDirectories = [
".config/nnn"
];
2023-01-26 00:23:55 +03:00
}