1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/theming.nix

35 lines
729 B
Nix
Raw Permalink Normal View History

2019-04-19 03:11:51 +02:00
{ lib, config, ... }:
2019-04-19 15:02:05 +02:00
with config.niveum; {
i18n.consoleColors = map (c: lib.strings.removePrefix "#" c) colourPalette;
2019-04-19 03:11:51 +02:00
environment.systemPackages = [
2019-04-19 15:02:05 +02:00
theme.gtk.package
theme.icon.package
theme.cursor.package
2019-04-19 03:11:51 +02:00
];
services.xserver.displayManager.lightdm.greeters.gtk = {
theme = {
2019-04-19 15:02:05 +02:00
name = theme.gtk.name;
package = theme.gtk.package;
2019-04-19 03:11:51 +02:00
};
iconTheme = {
2019-04-19 15:02:05 +02:00
name = theme.icon.name;
package = theme.icon.package;
2019-04-19 03:11:51 +02:00
};
};
home-manager.users.me = {
gtk = {
enable = true;
2019-04-19 15:02:05 +02:00
iconTheme = theme.icon;
theme = theme.gtk;
2019-04-19 03:11:51 +02:00
};
qt = {
enable = true;
useGtkTheme = true;
};
2019-04-19 15:02:05 +02:00
xsession.pointerCursor = theme.cursor // { size = 16; };
2019-04-19 03:11:51 +02:00
};
}