home/nvim: add dev icons

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-18 14:03:41 +03:00
parent 4abb9b4284
commit a2ba7eee97
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
4 changed files with 19 additions and 7 deletions

View file

@ -65,15 +65,16 @@
"utils": "utils_2"
},
"locked": {
"lastModified": 1663440717,
"narHash": "sha256-//t5hYTdJ2PlN62Sh1TuP2XZw+n0DHY58RZXqfwA77s=",
"rev": "04533149717ba7d45987444bd7885a13e10ce6f6",
"revCount": 18,
"lastModified": 1663492544,
"narHash": "sha256-NFq9698tie7mDWQSsBQZOyn2nqvZM7arjwGyLK3nb6I=",
"ref": "refs/heads/main",
"rev": "252f3cf2a6029037ada15564ea8533513391d7df",
"revCount": 19,
"type": "git",
"url": "https://git.pleshevski.ru/mynix/neovim"
},
"original": {
"rev": "04533149717ba7d45987444bd7885a13e10ce6f6",
"rev": "252f3cf2a6029037ada15564ea8533513391d7df",
"type": "git",
"url": "https://git.pleshevski.ru/mynix/neovim"
}

View file

@ -13,7 +13,7 @@
};
myneovim = {
url = "git+https://git.pleshevski.ru/mynix/neovim?rev=04533149717ba7d45987444bd7885a13e10ce6f6";
url = "git+https://git.pleshevski.ru/mynix/neovim?rev=252f3cf2a6029037ada15564ea8533513391d7df";
inputs.nixpkgs.follows = "nixpkgs";
};
};

View file

@ -7,7 +7,11 @@ let
inherit system;
overlays = [
inputs.myneovim.overlays.${system}
(final: prev: {
myneovim = inputs.myneovim.packages.${system}.default.override {
enableDevIcons = true;
};
})
];
};
in

View file

@ -23,6 +23,13 @@ in
# Set your time zone.
time.timeZone = "Europe/Moscow";
fonts.fonts = with pkgs; [
ubuntu_font_family
fira-code
fira-code-symbols
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";