commit 1c8b782f923d94e2c7dfdd93c1f4412d0949100f
Author: Filippo Berto <berto.f@protonmail.com>
Date: Wed Apr 2 10:45:01 2025 +0200
Foot terminal
commit 3e9a1665eac07458dd86502c8b33113bde87e4aa
Author: Filippo Berto <berto.f@protonmail.com>
Date: Sun Dec 15 12:40:56 2024 +0100
Sif: fix missing fonts
commit 014c7f739b3758b880f957cc07d1633843883c88
Author: Filippo Berto <berto.f@protonmail.com>
Date: Sun Dec 15 12:40:39 2024 +0100
Foot: WIP
30 lines
562 B
Nix
30 lines
562 B
Nix
{ pkgs, nixosConfig, ... }:
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
font = { inherit (nixosConfig.nix-rice.rice.font.normal) name package size; };
|
|
iconTheme = {
|
|
package = pkgs.qogir-icon-theme;
|
|
name = "Qogir-dark";
|
|
};
|
|
theme = {
|
|
package = pkgs.arc-theme;
|
|
name = "Arc-Dark";
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "gtk";
|
|
};
|
|
|
|
home = {
|
|
pointerCursor = {
|
|
package = pkgs.qogir-icon-theme;
|
|
name = "Qogir";
|
|
# size = 64;
|
|
# x11.enable = true;
|
|
gtk.enable = true;
|
|
};
|
|
};
|
|
}
|