- users/rin/default.nix -> users/rin.nix - users/rin/home.nix +-> users/rin.nix - users/rin/*.nix -> modules/user/*.nix - users/rin/scripts/ -> scripts/ - hosts/winter/default.nix -> hosts/winter.nix - hosts/winter/*.nix -> modules/system/*.nix - modules are dynamically imported as sets for system and user
25 lines
489 B
Nix
25 lines
489 B
Nix
{ config, pkgs, ... }: {
|
|
gtk = {
|
|
enable = true;
|
|
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
|
font = {
|
|
package = pkgs.open-sans;
|
|
name = "Open Sans";
|
|
size = 11;
|
|
};
|
|
iconTheme = {
|
|
package = pkgs.yaru-theme;
|
|
name = "Yaru";
|
|
};
|
|
theme = {
|
|
name = "Materia-dark";
|
|
package = pkgs.materia-theme;
|
|
};
|
|
};
|
|
|
|
xsession.pointerCursor = {
|
|
package = pkgs.yaru-theme;
|
|
name = "Yaru";
|
|
size = 16;
|
|
};
|
|
}
|