flakes/modules/user/xorg.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-30 21:37:07 +07:00
{ config, ... }: {
2021-06-04 16:17:02 +07:00
xsession = {
enable = true;
profilePath = ".config/xorg/xprofile";
scriptPath = ".config/xorg/xsession";
};
xdg.configFile."xorg/xinitrc".source = ../../scripts/xinitrc;
2021-05-30 21:37:07 +07:00
xdg.configFile."xorg/wallpaper.png".source = ../../res/wallpaper.png;
2021-06-04 16:17:02 +07:00
xresources = {
path = "${config.xdg.configHome}/xorg/xresources";
properties = {
# special
"*.foreground" = "#c5c8c6";
"*.background" = "#1d1f21";
"*.cursorColor" = "#c5c8c6";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# black
"*.color0" = "#1d1f21";
"*.color8" = "#969896";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# red
"*.color1" = "#cc342b";
"*.color9" = "#cc342b";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# green
"*.color2" = "#198844";
"*.color10" = "#198844";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# yellow
"*.color3" = "#fba922";
"*.color11" = "#fba922";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# blue
"*.color4" = "#3971ed";
"*.color12" = "#3971ed";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# magenta
"*.color5" = "#a36ac7";
"*.color13" = "#a36ac7";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# cyan
"*.color6" = "#3971ed";
"*.color14" = "#3971ed";
2021-05-30 22:08:35 +07:00
2021-06-04 16:17:02 +07:00
# white
"*.color7" = "#c5c8c6";
"*.color15" = "#ffffff";
};
2021-05-30 22:08:35 +07:00
};
2021-05-30 21:37:07 +07:00
}