mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
switch to neovim as a pager added parrot and mining modules deleted amd module moved the rest of vfio configuration to vfio.nix moved git from home-manager to system configuration
24 lines
479 B
Nix
24 lines
479 B
Nix
{pkgs, ...}: {
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
package = pkgs.flat-remix-gtk;
|
|
name = "Flat-Remix-GTK-Blue-Darkest";
|
|
};
|
|
iconTheme = {
|
|
package = pkgs.flat-remix-icon-theme;
|
|
name = "Flat-Remix-Blue-Dark";
|
|
};
|
|
font = {
|
|
name = "Overpass";
|
|
size = 10;
|
|
};
|
|
};
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
package = pkgs.quintom-cursor-theme;
|
|
name = "Quintom_Ink";
|
|
size = 16;
|
|
};
|
|
}
|