neovim
This commit is contained in:
parent
ac83e30d07
commit
eb6320bd0b
|
@ -26,6 +26,7 @@
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {inherit inputs;};
|
||||||
modules = [
|
modules = [
|
||||||
|
|
|
@ -9,9 +9,6 @@ home.username = "joy";
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
qt.enable = true;
|
|
||||||
qt.platformTheme.name = "gtk";
|
|
||||||
qt.style.name = "adwaita-dark";
|
|
||||||
|
|
||||||
xdg.mimeApps.defaultApplications = {
|
xdg.mimeApps.defaultApplications = {
|
||||||
"text/plain" = ["neovide.desktop"];
|
"text/plain" = ["neovide.desktop"];
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
cmdheight = 0;
|
cmdheight = 0;
|
||||||
wrap = true;
|
wrap = true;
|
||||||
termguicolors = true;
|
termguicolors = true;
|
||||||
showmode = false;
|
# showmode = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./fonts
|
# ./fonts
|
||||||
./sound
|
./sound
|
||||||
./vm
|
./vm
|
||||||
./packages
|
./packages
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
{
|
{
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
font-awesome
|
font-awesome
|
||||||
(nerdfonts.override { fonts = [ "FiraCode" "JetBrainsMono" "Iosevka" ]; })
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,5 +56,6 @@
|
||||||
yt-dlp
|
yt-dlp
|
||||||
distrobox
|
distrobox
|
||||||
vim
|
vim
|
||||||
|
font-awesome
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,11 +22,17 @@
|
||||||
base0F = "d65d0e";
|
base0F = "d65d0e";
|
||||||
};
|
};
|
||||||
image = ./wallpaper.png;
|
image = ./wallpaper.png;
|
||||||
fonts.sizes.terminal = 14;
|
|
||||||
targets.chromium.enable = false;
|
targets.chromium.enable = false;
|
||||||
cursor.name = "Bibata-Modern-Ice";
|
cursor.name = "Bibata-Modern-Ice";
|
||||||
cursor.package = pkgs.bibata-cursors;
|
cursor.package = pkgs.bibata-cursors;
|
||||||
cursor.size = 24;
|
cursor.size = 24;
|
||||||
fonts.sizes.desktop = 12;
|
fonts = {
|
||||||
|
sizes = {
|
||||||
|
applications = 12;
|
||||||
|
terminal = 14;
|
||||||
|
desktop = 12;
|
||||||
|
popups = 12;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue