first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
42
modules/home/gtk/default.nix
Executable file
42
modules/home/gtk/default.nix
Executable file
|
@ -0,0 +1,42 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
matrix-gtk = pkgs.fetchFromGitHub {
|
||||
owner = "samiulbasirfahim";
|
||||
repo = "Matrix-gtk";
|
||||
rev = "9ff060e016e5cd4830aafb6299142c3d8922944e";
|
||||
sha256 = "K7tEtB0WGKyjND+pZKUd4pktBlCV3v27pvqaxMILpFU=";
|
||||
};
|
||||
in
|
||||
{
|
||||
fonts.fontconfig.enable = true;
|
||||
home.packages = [
|
||||
pkgs.twemoji-color-font
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts-cjk
|
||||
pkgs.noto-fonts-emoji
|
||||
(pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||
];
|
||||
xdg.dataFile."themes/matrix-gtk".source = matrix-gtk;
|
||||
gtk = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
size = 10;
|
||||
};
|
||||
iconTheme = {
|
||||
package = pkgs.papirus-icon-theme;
|
||||
name = "Papirus-Dark";
|
||||
};
|
||||
theme = {
|
||||
name = "matrix-gtk";
|
||||
};
|
||||
cursorTheme = {
|
||||
name = "Catppuccin-Frappe-Dark";
|
||||
};
|
||||
};
|
||||
home.pointerCursor = {
|
||||
package = pkgs.catppuccin-cursors;
|
||||
name = "Catppuccin-Frappe-Red";
|
||||
size = 15;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue