home/nvim: add dev icons
This commit is contained in:
parent
4abb9b4284
commit
a2ba7eee97
4 changed files with 19 additions and 7 deletions
11
flake.lock
11
flake.lock
|
@ -65,15 +65,16 @@
|
||||||
"utils": "utils_2"
|
"utils": "utils_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1663440717,
|
"lastModified": 1663492544,
|
||||||
"narHash": "sha256-//t5hYTdJ2PlN62Sh1TuP2XZw+n0DHY58RZXqfwA77s=",
|
"narHash": "sha256-NFq9698tie7mDWQSsBQZOyn2nqvZM7arjwGyLK3nb6I=",
|
||||||
"rev": "04533149717ba7d45987444bd7885a13e10ce6f6",
|
"ref": "refs/heads/main",
|
||||||
"revCount": 18,
|
"rev": "252f3cf2a6029037ada15564ea8533513391d7df",
|
||||||
|
"revCount": 19,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.pleshevski.ru/mynix/neovim"
|
"url": "https://git.pleshevski.ru/mynix/neovim"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"rev": "04533149717ba7d45987444bd7885a13e10ce6f6",
|
"rev": "252f3cf2a6029037ada15564ea8533513391d7df",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.pleshevski.ru/mynix/neovim"
|
"url": "https://git.pleshevski.ru/mynix/neovim"
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
myneovim = {
|
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";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,11 @@ let
|
||||||
inherit system;
|
inherit system;
|
||||||
|
|
||||||
overlays = [
|
overlays = [
|
||||||
inputs.myneovim.overlays.${system}
|
(final: prev: {
|
||||||
|
myneovim = inputs.myneovim.packages.${system}.default.override {
|
||||||
|
enableDevIcons = true;
|
||||||
|
};
|
||||||
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
|
@ -23,6 +23,13 @@ in
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Moscow";
|
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
|
# Configure network proxy if necessary
|
||||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||||
|
|
Loading…
Reference in a new issue